home *** CD-ROM | disk | FTP | other *** search
- * Aztec.asm (c) 1987 Todor Fay
- *
- * Call _enteraztec at the beginning of a piece of code
- * that is called from SoundScape.
- * Call _leaveaztec when leaving that routine.
- *
-
- public __Dorg
- public _enteraztec
- public _leaveaztec
-
- _enteraztec
- move.l (sp)+,d0
- movem.l d3/d4/d5/d6/d7/a3/a4/a5/a6,-(sp)
- move.l #__Dorg,a4
- add.l #32766,a4
- move.l d0,-(sp)
- rts
-
- _leaveaztec
- move.l (sp)+,d0
- movem.l (sp)+,d3/d4/d5/d6/d7/a3/a4/a5/a6
- move.l d0,-(sp)
- rts
-