7f75f5eb1e
*Due space limitations only the debug version of kenobigc is supported, this means there is a bit less space for cheats. git-svn-id: svn://localhost/Users/andi/Downloads/code/trunk@2 be6c1b03-d731-4111-a574-e37d80d43941
24 lines
232 B
ArmAsm
24 lines
232 B
ArmAsm
#include <asm.h>
|
|
|
|
#
|
|
# r3 Channel
|
|
|
|
CARDCheck:
|
|
|
|
mflr %r0
|
|
cmpwi %r3, 0
|
|
beq CARDPresent
|
|
|
|
li %r3, -3
|
|
b end
|
|
|
|
CARDPresent:
|
|
li %r3, 0
|
|
end:
|
|
|
|
lis %r4, 0xC000
|
|
stw %r3, 0x2F94(%r4)
|
|
|
|
mtlr %r0
|
|
blr
|