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

8 lines
217 B
Plaintext

.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