mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
b6904aa2cc
* remove ZAPD submodule * git subrepo clone https://github.com/zeldaret/ZAPD.git tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "ca229f19" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "ca229f19" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * git subrepo clone https://github.com/simonlindholm/decomp-permuter.git tools/decomp-permuter subrepo: subdir: "tools/decomp-permuter" merged: "1e4b85a7" upstream: origin: "https://github.com/simonlindholm/decomp-permuter.git" branch: "main" commit: "1e4b85a7" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Remove asm-differ * git subrepo clone https://github.com/simonlindholm/asm-differ.git tools/asm-differ subrepo: subdir: "tools/asm-differ" merged: "eaf72269" upstream: origin: "https://github.com/simonlindholm/asm-differ.git" branch: "master" commit: "eaf72269" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * remove asm-processor * git subrepo clone https://github.com/simonlindholm/asm-processor.git tools/asm-processor subrepo: subdir: "tools/asm-processor" merged: "85288fcd" upstream: origin: "https://github.com/simonlindholm/asm-processor.git" branch: "master" commit: "85288fcd" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * remove .gitmodules file * Update REAMDE * Update warnings
70 lines
978 B
C
70 lines
978 B
C
const char buf1[1] = {1};
|
|
float func1(void) {
|
|
"func1";
|
|
return 0.1f;
|
|
}
|
|
const char buf2[1] = {2};
|
|
void func2(void) {
|
|
*(volatile float*)0 = -3.5792360305786133f;
|
|
*(volatile float*)0 = -3.5792362689971924f;
|
|
// "func2";
|
|
// return 0.2f;
|
|
}
|
|
const char buf3[1] = {3};
|
|
int func3(int x) {
|
|
switch(x) {
|
|
case 0:
|
|
return 1;
|
|
case 1:
|
|
return 2;
|
|
case 2:
|
|
return 3;
|
|
case 3:
|
|
return 4;
|
|
case 4:
|
|
return 5;
|
|
case 5:
|
|
return 4;
|
|
case 6:
|
|
return 4;
|
|
case 7:
|
|
return 4;
|
|
default:
|
|
return 3;
|
|
}
|
|
}
|
|
|
|
#if 1
|
|
GLOBAL_ASM(
|
|
.rdata
|
|
.word 0x66756e63 # func
|
|
.word 0x34000000 # 4\0\0\0
|
|
.word jumptarget
|
|
|
|
.late_rodata
|
|
glabel rv
|
|
.word 0x3e4ccccd # 0.2f
|
|
.word jumptarget
|
|
|
|
.text
|
|
glabel func4
|
|
lui $at, %hi(rv)
|
|
jumptarget:
|
|
jr $ra
|
|
lwc1 $f0, %lo(rv)($at)
|
|
jr $ra
|
|
nop
|
|
jr $ra
|
|
nop
|
|
jr $ra
|
|
nop
|
|
jr $ra
|
|
nop
|
|
)
|
|
#else
|
|
float func4(void) {
|
|
"func4";
|
|
return 0.2f;
|
|
}
|
|
#endif
|