How may I make a .EXE file using NASM/DJGPP?
May I use BIOS INT in it?
Thank you,
pepito
Make an .EXE file
RE:Make an .EXE file
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
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