ld: Move the .note.build-id section to near the start of the memory map.
[binutils-gdb.git] / sim / testsuite / bfin / issue129.s
blobf9653a86550bf87048cd079f0e89b3f51bbf0708
1 # Blackfin testcase for PREGS and BREV
2 # mach: bfin
4 .include "testutils.inc"
6 start
8 // issue 129
10 P0.L = 0x0000;
11 P0.H = 0x8000;
13 P4.L = 0x0000;
14 P4.H = 0x8000;
16 P4 += P0 (BREV);
18 R0 = P4;
19 DBGA ( R0.H , 0x4000 );
20 DBGA ( R0.L , 0 );
22 //--------------
24 P0.L = 0x0000;
25 P0.H = 0xE000;
27 P4.L = 0x1f09;
28 P4.H = 0x9008;
30 P4 += P0 (BREV);
32 R0 = P4;
33 DBGA ( R0.H , 0x0808 );
34 DBGA ( R0.L , 0x1f09 );
36 pass