master
s 15 lines 441 Bytes
Raw
1 #include "macros.h"
2 .data
3 test_data:
4 .word 0xaffedead
5 .word 0x001122ff
6 .text
7 .global _start
8 _start:
9 # expect. addr reg val after load
10 # insn num expect. load value | pattern for loading
11 # | | | | |
12 TEST_LD (ld.h, 1, 0xffffaffe, test_data, [AREG_ADDR]2)
13 TEST_LD_SRO(ld.h, 2, 0x000022ff, test_data, [AREG_ADDR]4)
14
15 TEST_PASSFAIL