Files
Nintendont/kernel/asm/RestoreSettingsAX_RVD.S
FIX94 afcfa4b653 -added deadzones to wii vc gamepad reads and heavily changed memory to make space for that, hopefully it didnt break anything
-completely restructured how internal wii vc titles get read in, again hopefully it didnt break anything
2017-09-20 06:14:16 +02:00

36 lines
992 B
ArmAsm

/*
RestoreSettingsAX_RVD.S for Nintendont (Kernel)
Copyright (C) 2015 FIX94
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 version 2.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <asm.h>
.set AX_BACKUP, 0xD3003500
.set AX_DEST, 0x803CFBD0
RestoreSettingsAX:
lis %r3, AX_BACKUP@h
ori %r3, %r3, AX_BACKUP@l
lis %r4, AX_DEST@h
ori %r4, %r4, AX_DEST@l
li %r5, 0x2A
memcpy:
subic. %r5, %r5, 1
lbzx %r0, %r3, %r5
stbx %r0, %r4, %r5
bne memcpy
blr