mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-12-02 16:14:15 +01:00
105 lines
1.7 KiB
ArmAsm
105 lines
1.7 KiB
ArmAsm
|
/*
|
||
|
* DIP plugin for Custom IOS.
|
||
|
*
|
||
|
* Copyright (C) 2008-2010 Waninkoko, WiiGator.
|
||
|
*
|
||
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
|
||
|
.align 4
|
||
|
|
||
|
/*
|
||
|
* DIP functions
|
||
|
*/
|
||
|
.code 32
|
||
|
.global DI_ReadHash
|
||
|
DI_ReadHash:
|
||
|
stmfd sp!, {r7, lr}
|
||
|
ldr r7, =addr_readHash
|
||
|
ldr r7, [r7]
|
||
|
bl _call_di
|
||
|
ldmfd sp!, {r7, lr}
|
||
|
bx lr
|
||
|
|
||
|
.code 32
|
||
|
.global DI_Alloc
|
||
|
DI_Alloc:
|
||
|
stmfd sp!, {r7, lr}
|
||
|
ldr r7, =addr_alloc
|
||
|
ldr r7, [r7]
|
||
|
bl _call_di
|
||
|
ldmfd sp!, {r7, lr}
|
||
|
bx lr
|
||
|
|
||
|
.code 32
|
||
|
.global DI_Free
|
||
|
DI_Free:
|
||
|
stmfd sp!, {r7, lr}
|
||
|
ldr r7, =addr_free
|
||
|
ldr r7, [r7]
|
||
|
bl _call_di
|
||
|
ldmfd sp!, {r7, lr}
|
||
|
bx lr
|
||
|
|
||
|
.code 32
|
||
|
.global DI_Printf
|
||
|
DI_Printf:
|
||
|
stmfd sp!, {r7, lr}
|
||
|
ldr r7, =addr_printf
|
||
|
ldr r7, [r7]
|
||
|
bl _call_di
|
||
|
ldmfd sp!, {r7, lr}
|
||
|
bx lr
|
||
|
|
||
|
.code 32
|
||
|
_call_di:
|
||
|
bx r7
|
||
|
|
||
|
|
||
|
/*
|
||
|
* DIP handlers
|
||
|
*/
|
||
|
.code 16
|
||
|
.thumb_func
|
||
|
|
||
|
.global DI_HandleIoctl
|
||
|
DI_HandleIoctl:
|
||
|
push {r4-r7, lr}
|
||
|
mov r7, r10
|
||
|
mov r6, r8
|
||
|
push {r6, r7}
|
||
|
ldr r5, [r0]
|
||
|
mov r10, r1
|
||
|
|
||
|
ldr r3, =addr_handleIoctl
|
||
|
ldr r3, [r3]
|
||
|
bx r3
|
||
|
|
||
|
.code 16
|
||
|
.thumb_func
|
||
|
|
||
|
.global DI_HandleCmd
|
||
|
DI_HandleCmd:
|
||
|
push {r4-r7, lr}
|
||
|
mov r7, r11
|
||
|
mov r6, r10
|
||
|
mov r5, r9
|
||
|
mov r4, r8
|
||
|
push {r4-r7}
|
||
|
|
||
|
ldr r3, =addr_handleCmd
|
||
|
ldr r3, [r3]
|
||
|
bx r3
|