Make an .EXE file

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
pepito

Make an .EXE file

Post by pepito »

How may I make a .EXE file using NASM/DJGPP?
May I use BIOS INT in it?

Thank you,

pepito
carbonBased

RE:Make an .EXE file

Post by carbonBased »

nasm file.asm -f coff
gcc file.o -o file.exe

You certainly can use BIOS int's in an exe... you can do whatever you want, but if this .exe is intended to be loaded/run withen a pmode OS, then those ints wont work.

Cheers,
Jeff
pepito

RE:Make an .EXE file

Post by pepito »

Thank you, no more questions.

pepito
Post Reply