mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
58022571ba
* yeet * git subrepo clone git@github.com:simonlindholm/asm-processor.git tools/asm-processor subrepo: subdir: "tools/asm-processor" merged: "bbd86ea1f" upstream: origin: "git@github.com:simonlindholm/asm-processor.git" branch: "main" commit: "bbd86ea1f" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
84 lines
717 B
C
84 lines
717 B
C
GLOBAL_ASM(
|
|
.late_rodata
|
|
.float 4.1
|
|
.text
|
|
glabel a
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
)
|
|
|
|
float foo(void) {
|
|
return 4.15f;
|
|
}
|
|
|
|
GLOBAL_ASM(
|
|
.late_rodata
|
|
.float 4.2
|
|
.word 0
|
|
.double 4.3
|
|
.text
|
|
glabel b
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
)
|
|
|
|
float bar(void) {
|
|
return 4.4f;
|
|
}
|
|
|
|
GLOBAL_ASM(
|
|
.late_rodata
|
|
.float 4.55
|
|
.double 4.6
|
|
.text
|
|
glabel c
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
)
|
|
|
|
float baz(void) {
|
|
return 4.6f;
|
|
}
|