mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-30 00:46:24 -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
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")
|