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"
23 lines
378 B
C
23 lines
378 B
C
void foo(void) { "abcdef"; }
|
|
|
|
GLOBAL_ASM(
|
|
.rdata
|
|
.ascii "AB" \
|
|
"CD", "EF"
|
|
.ascii "GH\n\n\n\0\11\222\3333\44444\x1234567\n\nIJK"
|
|
)
|
|
|
|
void bar(void) { "hello"; }
|
|
|
|
GLOBAL_ASM(
|
|
.rdata
|
|
.asciiz "1\
|
|
2"
|
|
.asciiz "34", "56"
|
|
.asciiz "78\n\n\n\0\11\222\3333\44444\x1234567\n\n9A"
|
|
)
|
|
|
|
void baz(void) { "ghijkl"; }
|
|
|
|
GLOBAL_ASM("tests/line-continuation-separate-file.s")
|