home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
tools
/
make
/
cmake
/
samples
/
masm
/
a_world.asm
< prev
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_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