as ur FAQ says i downloaded the a86 asm compiler or whatever u call it...then created in the ame dir a file called hello.asm... i wrote the following code
then saved it...but i write in the command prompt a86 hello.asm and it didnt work...how do i do that? i also noticed theres no file a86.exe .com .something..lol..im pretty new to this..what should i do lol?Code:jmp start Message1 db "Hello World!$" start: mov ah, 09h mov dx, offset Message1 int 21h mov ax, 4c00h int 21h




Reply With Quote