home *** CD-ROM | disk | FTP | other *** search
- #
- # Copyright (C) 1996-1997 Id Software, Inc.
- #
- # 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- #
-
- #
- # PowerUp fix which implements the missing Modu64p() function. :P
- #
- .file "Modu64pPPC.s"
-
- .extern PPCDivu64
-
-
- .text
-
- .globl PPCModu64p
- PPCModu64p:
- mflr r0
- stw r0,4(r1)
- stwu r1,-16(r1)
- stw r31,12(r1)
- mr r31,r3
- lwz r5,0(r4)
- lwz r6,4(r4)
- lwz r4,4(r3)
- lwz r3,0(r3)
- bl PPCDivu64
- stw r5,0(r31)
- stw r6,4(r31)
- lwz r31,12(r1)
- addi r1,r1,16
- lwz r0,4(r1)
- mtlr r0
- blr
-
- .type PPCModu64p,@function
- .size PPCModu64p,$-PPCModu64p
-