I am doing a tutorial on Assembly, and I have ran into this error: fatal: Unable to open include file "includes/asm_io.inc"
Here is my code:
%include "includes\asm_io.inc"
MOV EAX, 3 ;EAX = 3
ADD EAX, 4 ;EAX = EAX + 4
INC EAX ;EAX++
CALL print_int ;cout << EAX
CALL print_nl ;cout << '\n'
I have the asm_io.inc file in the includes folder which is in the same folder as my code.
Any help would be appreciatedd. :)