Empty program: Difference between revisions

m
Line 45:
 
=={{header|8086 Assembly}}==
===16-Bit x86 for EXE Files===
<lang asm>.model small ;.exe file
.stack 1024 ;this value doesn't matter, I chose this arbitrarily
.data
;not needed in an empty program
.code
mov ax,4C00h
int 21h ;exit this program and return to MS-DOS</lang>
 
 
===32-Bit x86===
<lang asm>end</lang>
 
1,489

edits