home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
C
/
OTL-MC6.DMS
/
in.adf
/
libsrc.lha
/
LIBSRC
/
terminate.asm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1994-05-14
|
329 b
|
31 lines
* Maxon C++ Compiler:
* Library-Modul "terminate"
* Jens Gelhar 14.05.94
xref abort_
section c1,CODE
xdef terminate_
terminate_:
move.l termfunc,a0
jmp (a0)
section c2,CODE
xdef set_terminate__PFvp
set_terminate__PFvp:
move.l termfunc,d0
move.l 4(a7),termfunc
rts
section d,DATA
termfunc:
dc.l abort_
end