mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
lm32: opcode testsuite
This patch creates tests/lm32 directory and adds tests for every LatticeMico32 opcode. Signed-off-by: Michael Walle <michael@walle.cc> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
parent
45664345fa
commit
d65f083146
67 changed files with 3048 additions and 0 deletions
35
tests/lm32/test_sw.S
Normal file
35
tests/lm32/test_sw.S
Normal file
|
@ -0,0 +1,35 @@
|
|||
.include "macros.inc"
|
||||
|
||||
start
|
||||
|
||||
test_name SW_1
|
||||
load r1 data
|
||||
load r2 0xaabbccdd
|
||||
sw (r1+0), r2
|
||||
check_mem data 0xaabbccdd
|
||||
|
||||
test_name SW_2
|
||||
load r2 0x00112233
|
||||
sw (r1+4), r2
|
||||
check_mem data1 0x00112233
|
||||
|
||||
test_name SW_3
|
||||
load r2 0x44556677
|
||||
sw (r1+-4), r2
|
||||
check_mem data0 0x44556677
|
||||
|
||||
test_name SW_4
|
||||
sw (r1+0), r1
|
||||
lw r3, (r1+0)
|
||||
check_r3 data
|
||||
|
||||
end
|
||||
|
||||
.data
|
||||
.align 4
|
||||
data0:
|
||||
.byte 0, 0, 0, 0
|
||||
data:
|
||||
.byte 0, 0, 0, 0
|
||||
data1:
|
||||
.byte 0, 0, 0, 0
|
Loading…
Add table
Add a link
Reference in a new issue