30 lines
481 B
Text
30 lines
481 B
Text
mov ax,0070h
|
|
call EncodeRoman
|
|
mov si,offset StringRam
|
|
call PrintString
|
|
call NewLine
|
|
|
|
mov ax,1776h
|
|
call EncodeRoman
|
|
mov si,offset StringRam
|
|
call PrintString
|
|
call NewLine
|
|
|
|
mov ax,2021h
|
|
call EncodeRoman
|
|
mov si,offset StringRam
|
|
call PrintString
|
|
call NewLine
|
|
|
|
mov ax,3999h
|
|
call EncodeRoman
|
|
mov si,offset StringRam
|
|
call PrintString
|
|
call NewLine
|
|
|
|
mov ax,4000h
|
|
call EncodeRoman
|
|
mov si,offset StringRam
|
|
|
|
|
|
ReturnToDos ;macro that calls the int that exits dos
|