RosettaCodeData/Task/Empty-program/8086-Assembly/empty-program-2.8086
2023-07-01 13:44:08 -04:00

7 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