1 # cr16 testcase for st $src1,@$src2 2 # mach(): cr16 3 4 .include "testutils.inc" 5 6 start 7 8 .global st 9 st: 10 movd $data_loc, (r4,r3) 11 movw $0x1234,r5 12 13 storw r5,0(r4,r3) 14 15 loadw 0(r4,r3),r1 16 test_h_gr r1, 0x1234 17 18 pass 19 20 data_loc: 21 .word 0 22