home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d2xx
/
d229
/
esuom.lha
/
esuoM
/
hndstub.asm
< prev
next >
Wrap
Assembly Source File
|
1989-07-20
|
274b
|
10 lines
xdef _hndstub ;this is hndstub()
xref _hndcode ;will call hndcode(InputEvent,Data)
_hndstub movem.l a0/a1,-(a7) ;stack InputEvent & Data ptrs
jsr _hndcode ;jump to actual input handler
addq.l #8,a7 ;de-stack pointers
rts ;return (return value is in D0)
end