I have been working on SASM ide using NASM. While building, this error keeps in reoccurring
Build started...
Warning! Errors have occurred in the build:
gcc: error: /tmp/SASM/macro.o: No such file or directory
%include "io.inc"section .data msg db 'Hello, world!', 0section .text global CMAINCMAIN: mov ebp, esp PRINT_STRING msg NEWLINE xor eax, eax ret