blob: dcf40c8960376b2e29e8f1d9f558cec3c733a85f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.text
.globl main
.globl start
.globl _start
.globl __start
main:
start:
_start:
__start:
.byte 0
.section .bar,"ax","progbits"
.byte 0
.section .foo,"aw","progbits"
.byte 0
.data
.byte 0
|