Skip to main content

Microsoft Windows

How do I compile my 16-bit code in G24 ESB?

1.) Open a command prompt.

2.) cd to the directory with your .asm file.

3.) From the prompt:

link16 filename.asm 

OR 

c:\masm32\bin\ml.exe filename.asm /Bl c:\masm32\bin\link16.exe

That will create your .exe and .obj files.

Documentation