mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
14 lines
153 B
NASM
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
|