RosettaCodeData/Task/Empty-program/8086-Assembly/empty-program-2.8086

8 lines
217 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
.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