test_modu.S 382 字节
Newer Older
M
Michael Walle 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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