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"
81 lines
800 B
C
81 lines
800 B
C
GLOBAL_ASM(
|
|
.late_rodata
|
|
.float 4.1
|
|
.float 4.2
|
|
.float 4.3
|
|
.float 4.4
|
|
.text
|
|
glabel a
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
)
|
|
|
|
float foo(void) { "foo"; return 1.1f; }
|
|
|
|
GLOBAL_ASM(
|
|
.late_rodata
|
|
.late_rodata_alignment 4
|
|
.float 5.1
|
|
.float 5.2
|
|
.float 5.3
|
|
.float 5.4
|
|
.text
|
|
glabel b
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
)
|
|
|
|
float bar(void) { "bar"; return 1.2f; }
|
|
|
|
GLOBAL_ASM(
|
|
.late_rodata
|
|
.late_rodata_alignment 8
|
|
.float 6.1
|
|
.float 6.2
|
|
.float 6.3
|
|
.float 6.4
|
|
.float 6.5
|
|
.text
|
|
glabel c
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
)
|
|
|