blob: 1fc4da368472ce2472e8145a25cd26e8d02b9dfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
.text
.global _start
.global _mainCRTStartup
_start:
_mainCRTStartup:
.byte 1
.global data
.data
data:
.byte 2
.section .text.very.long.section.name,"rx"
vls:
.byte 3
.section .data$1,"wd"
.byte 4
.section .rodata$1,"rd"
.byte 5
.section .data$123,"wd"
.byte 4
.section .rodata$123,"rd"
.byte 5
.section .data$123456789,"wd"
.byte 4
.section .rodata$123456789,"rd"
.byte 5
.section .data.very.long.section,"wd"
.byte 6
.section .rodata.very.long.section,"rd"
.byte 7
.section .data.very.long.section$1,"wd"
.byte 6
.section .rodata.very.long.section$1,"rd"
.byte 7
.section .data.very.long.section$1234,"wd"
.byte 6
.section .rodata.very.long.section$1234,"rd"
.byte 7
.end
|