PDA

Click to See Complete Forum and Search --> : Nasm Gui?


Ahriman
Feb 3rd, 2002, 06:35 PM
Can anyone tell me where i can get a GUI for NASM before i write my own?

I really hate using shells, they slow me up.

ChimpFace9000
Feb 4th, 2002, 12:30 AM
There is no GUI for NASM. Its an assembler. No assembler has a gui, not that i know of anyway.

I think you mean an IDE. And there is one for nasm. Its called Nagoa. I dont have a link, but search for it in google or something and youll find it.

Ahriman
Feb 4th, 2002, 03:44 PM
Nagoa looks good, but its too complicated and i don't know how to use it. I just want a text editor with a button to compile, link and run, so I don't have to use the command line.

btw, when I type this into the editor and press, "asm>obj", it get nams gives this error,
"more than one input file specified"

Message1 db "Hello World!$"

.start
mov ah, 09h
mov dx, offset Message1
int 21h

mov ax, 4c00h
int 21h

I don't know if its my code thats wrong or if what i'm doing is wrong. If I can get that button to work, I might be able to use it.

numtel
Feb 4th, 2002, 04:07 PM
you can put the commands in a batch file to run that way you dont ahve to type everything.