Updated Malay translation for the bfd sub-directory
[binutils-gdb.git] / ld / testsuite / ld-msp430-elf / initarray.s
blobabbf86e8838c68d515c071f273bbd5d58123c64c
1 .text
2 .section .preinit_array,"aw"
3 .short 42
5 .section .init_array,"aw"
6 .short 43
8 .section .fini_array,"aw"
9 .short 44
11 .text
12 .global main
13 .type main, @function
14 main:
15 MOV #__preinit_array_start, R8
16 MOV #__init_array_start, R9
17 MOV #__fini_array_start, R10
18 CALL @R8
19 CALL @R9
20 CALL @R10
21 RET