home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
CM100EXE.ARJ
/
CM100EXE.ZIP
/
SAMPLES
/
MASM
/
A_HELLO.ASM
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1991-11-17
|
235 b
|
18 lines
; a_hello.asm - Function to call C function to print "Hello"
TITLE hello.asm
DOSSEG
.MODEL SMALL,C
.CODE
include hello.inc
; CMAKE - INCLUDE END
a_print_hello PROC
call print_hello
ret
a_print_hello ENDP
END