Home
       master.s - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       master.s (443B)
       ---
            1         .globl        text1,averylongtext,text5
            2         .globl        text6
            3         .text
            4         .equ        text2,4
            5 text1:        .byte        0
            6 averylongtext:
            7         .byte        0
            8 text3:        .byte        0
            9         .comm        text4,10
           10         .comm        text5,18
           11         .short        text6
           12 
           13         .globl        data1,averylongdata,data5
           14         .data
           15         .equ        data2,5
           16 data1:        .byte        3
           17 averylongdata:
           18         .byte        0
           19 data3:        .byte        0
           20         .comm        data4,10
           21         .comm        data5,18
           22 
           23         .globl        bss1,averylongbss,bss5
           24         .bss
           25         .equ        bss2,5
           26 bss1:        .byte        0
           27 averylongbss:
           28         .byte        0
           29 bss3:        .byte        0
           30         .comm        bss4,10
           31         .comm        bss5,18