mirror of
https://github.com/n64decomp/sm64.git
synced 2024-11-15 22:05:03 -05:00
20 lines
326 B
C
20 lines
326 B
C
void foo(void) { "abcdef"; }
|
|
|
|
GLOBAL_ASM(
|
|
.rdata
|
|
.ascii "AB"
|
|
.ascii "CD", "EF"
|
|
.ascii "GH\n\n\n\0\11\222\3333\44444\x1234567\n\nIJK"
|
|
)
|
|
|
|
void bar(void) { "hello"; }
|
|
|
|
GLOBAL_ASM(
|
|
.rdata
|
|
.asciiz "12"
|
|
.asciiz "34", "56"
|
|
.asciiz "78\n\n\n\0\11\222\3333\44444\x1234567\n\n9A"
|
|
)
|
|
|
|
void baz(void) { "ghijkl"; }
|