Commit | Line | Data |
---|---|---|
6bf56e74 IK |
1 | .globl _start, foo, bar |
2 | ||
3 | .section ".text.start", "ax" | |
4 | _start: | |
5 | bl foo | |
6 | .space 0x7000000 | |
7 | ||
8 | .section ".text.bar", "ax" | |
9 | bar: | |
10 | .space 0x1000000 | |
11 | .size bar, .-bar | |
12 | ||
13 | .section ".text.foo", "ax" | |
14 | foo: | |
15 | b _start |