I keep getting the same error: error: parser: instruction expected
I get this error with the following line:
WSTRING 'MESSAGE' My code is:
Bits 16 call clear_screen WSTRING 'MESSAGE' jmp $ %MACRO WSTRING 1 mov si, %1 call print %ENDMACRO I've tried this and doesn't work either:
Bits 16 MSG DB 'MESSAGE',0 call clear_screen WSTRING MSG jmp $ %MACRO WSTRING 1 mov si, %1 call print %ENDMACRO
msg_str: db "MESSAGE", 0and then doWSTRING msg_str