home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
CM100EXE.ARJ
/
CM100EXE.ZIP
/
SAMPLES
/
MASM
/
A_WORLD.ASM
< prev
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_world.asm - Function to call C function to print "World"
TITLE world.asm
DOSSEG
.MODEL SMALL,C
.CODE
include world.inc
; CMAKE - INCLUDE END
a_print_world PROC
call print_world
ret
a_print_world ENDP
END