home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1998 January (DVD)
/
VPR980100.ISO
/
DRIVER
/
IBM
/
VW200
/
VW200_2.EXE
/
HELLO
/
HELLO.S
< prev
next >
Wrap
Text File
|
1995-11-22
|
707b
|
38 lines
include pccard.mac
include api.inc
include hello.inc
data
code
HelloMsg:
db 'H', 'e', 'l', 'l', 'o', ' ', ' ', ' ', ' ', ' ', ' ', ' '
db 'C', 'h', 'i', 'p', 'C', 'a', 'r', 'd', ' ', ' ', ' ', ' '
db 0
Hello:
push ale
API CursorOff
xor a, a
API SetTextSize
API ClearScreen
ld xp, #pod HelloMsg
ld ix, #lod HelloMsg
sub hl, hl
API PutStr
1$: halt
API InKey
or a, a
jr z, 1$
pop ale
jp [0feh]
end