Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gdb6 / sim / testsuite / d10v-elf / t-ld-st.s
blobec9f2023f6ae3bffdc2453a12576a239357a0cec
1 .include "t-macros.i"
3 start
5 ; Test ld and st
6 ld r4, @foo
7 check 1 r4 0xdead
9 ldi r4, #0x2152
10 st r4, @foo
11 ld r4, @foo
12 check 2 r4 0x2152
14 ; Test ld2w and st2w
15 ldi r4, #0xdead
16 st r4, @foo
17 ld2w r4, @foo
18 check2w2 3 r4 0xdead 0xf000
20 ldi r4, #0x2112
21 ldi r5, #0x1984
22 st2w r4, @foo
23 ld2w r4, @foo
24 check2w2 4 r4 0x2112 0x1984
26 .data
27 .align 2
28 foo: .short 0xdead
29 bar: .short 0xf000
30 .text
32 exit0