14 lines
84 B
NASM
14 lines
84 B
NASM
|
.model tiny
|
||
|
.486
|
||
|
smart
|
||
|
.code
|
||
|
|
||
|
org 0100h
|
||
|
|
||
|
start:
|
||
|
mov ah,2
|
||
|
int 74h
|
||
|
db 0CBh
|
||
|
|
||
|
end start
|