jwasm/Regress/STARTUP1.ASM
2014-06-18 19:16:56 +04:00

14 lines
153 B
NASM

;--- testing .STARTUP and .EXIT directives for TINY
;--- no error expected
.286
.model tiny
.code
.startup
.exit 1+2+3
END