sm64

A Super Mario 64 decompilation
Log | Files | Refs | README | LICENSE

line-continuation.c (378B)


      1 void foo(void) { "abcdef"; }
      2 
      3 GLOBAL_ASM(
      4 .rdata
      5     .ascii "AB" \
      6     "CD", "EF"
      7     .ascii "GH\n\n\n\0\11\222\3333\44444\x1234567\n\nIJK"
      8 )
      9 
     10 void bar(void) { "hello"; }
     11 
     12 GLOBAL_ASM(
     13 .rdata
     14     .asciiz "1\
     15 2"
     16     .asciiz "34", "56"
     17     .asciiz "78\n\n\n\0\11\222\3333\44444\x1234567\n\n9A"
     18 )
     19 
     20 void baz(void) { "ghijkl"; }
     21 
     22 GLOBAL_ASM("tests/line-continuation-separate-file.s")