8 lines
217 B
Text
8 lines
217 B
Text
|
|
.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
|