diff options
author | Michael Walle | 2011-02-17 23:45:16 +0100 |
---|---|---|
committer | Edgar E. Iglesias | 2011-03-07 13:42:37 +0100 |
commit | d65f083146d269b48d53368a8e49aa7d2d4a08fd (patch) | |
tree | 4177f250548dc57c57b8ed3f9aa18efb1872e9af /tests/lm32/test_modu.S | |
parent | lm32: todo and documentation (diff) | |
download | qemu-d65f083146d269b48d53368a8e49aa7d2d4a08fd.tar.gz qemu-d65f083146d269b48d53368a8e49aa7d2d4a08fd.tar.xz qemu-d65f083146d269b48d53368a8e49aa7d2d4a08fd.zip |
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>
Diffstat (limited to 'tests/lm32/test_modu.S')
-rw-r--r-- | tests/lm32/test_modu.S | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/lm32/test_modu.S b/tests/lm32/test_modu.S new file mode 100644 index 0000000000..42486900b4 --- /dev/null +++ b/tests/lm32/test_modu.S @@ -0,0 +1,35 @@ +.include "macros.inc" + +start + +test_name MODU_1 +mvi r1, 0 +mvi r2, 1 +modu r3, r1, r2 +check_r3 0 + +test_name MODU_2 +mvi r1, 1 +mvi r2, 1 +modu r3, r1, r2 +check_r3 0 + +test_name MODU_3 +mvi r1, 3 +mvi r2, 2 +modu r3, r1, r2 +check_r3 1 + +test_name MODU_4 +mvi r1, 0 +mvi r2, 0 +modu r3, r1, r2 +check_excp 16 + +test_name MODU_5 +load r1 0xabcdef12 +load r2 0x12345 +modu r3, r1, r2 +check_r3 0x3c12 + +end |