mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
12 lines
129 B
Plaintext
12 lines
129 B
Plaintext
|
|
;--- test @data in TINY model
|
|
|
|
.model tiny
|
|
.stack 400h
|
|
.code
|
|
start:
|
|
mov ax,@data
|
|
mov ah,4ch
|
|
int 21h
|
|
END start
|