im very new to assembly and i just recently downloaded sasm and I'm trying to run this code.
; AddTwo.asm - adds two 32-bit integers
; Chapter 3 example
ExitProcess PROTO, dwExitCode: DWORD
.386
.model flat, stdcall
.stack 4096
.code
main PROC
mov eax, 5 ; move 5 to the eax register
add eax, 6 ; add 6 to the eax register
INVOKE ExitProcess,0
main ENDP
END main
but the console says
Unable to start assembler. Check your settings.