home *** CD-ROM | disk | FTP | other *** search
- * MultiPlayer
- * Copyright (C) 1992 Bryan Ford
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * I (the author of MultiPlayer) can be contacted on the Internet at
- * "bryan.ford@m.cc.utah.edu". See "Player.doc" for other addresses.
- *
- * $Id: bouncekludge.asm,v 3.1 92/05/25 07:52:08 BAF Exp $
- *
-
-
- abounce macro ; label
- xdef \1
- xref r_\1
- \1 jmp r_\1
- endm
-
- cbounce macro ; label
- xdef @\1
- xref @r_\1
- @\1 jmp @r_\1
- endm
-
- code text
-
- * window.c
- cbounce windowsettingsupdate
- cbounce windowopen
-
- * progwin.c
- cbounce progwinlistdetach
- cbounce progwinlistattach
- cbounce progwinselmod
- cbounce progwinopenclose
-
- * prefswin.c
- cbounce prefswinupdate
- cbounce prefswinopenclose
-
- * settingswin.c
- cbounce settingswinupdate
- cbounce settingswinopenclose
-
- * infowin.c
- cbounce infowinattach
- cbounce infowindetach
- cbounce infowinopenclose
-
- * flashywin.c
- cbounce flashywinopenclose
-
- * ptsplay.asm
- abounce ptfilter
-
- end
-