.Model Small .Stack 64 .Data msg DB 13,10, "Hello$" CNT DW 20 .code .startup mov CX,CNT Next: mov AH,09h Lea DX,msg Int 21h Loop Next .exit end
Standard input is empty
prog.asm:1: error: attempt to define a local label before any non-local labels prog.asm:1: error: parser: instruction expected prog.asm:3: error: attempt to define a local label before any non-local labels prog.asm:3: error: parser: instruction expected prog.asm:5: error: attempt to define a local label before any non-local labels
Standard output is empty