blob: 60226c198e40b534c96a26eb419f31e82f6037ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.section .data
;;
;; The next line caused an earlier ld to core dump.
.global .data
foo:
.space 0x0064
.section .text
.global _test
.global _start
_test:
ldi r0,foo
_start:
nop
|