home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
tools
/
make
/
cmake
/
samples
/
masm
/
a_hello.asm
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1991-11-16
|
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