json-lexer: reset the lexer state on an invalid token
[qemu.git] / tests / lm32 / test_divu.S
blobf381d095c53df972e457112c309554d32ddac2d7
1 .include "macros.inc"
3 start
5 test_name DIVU_1
6 mvi r1, 0
7 mvi r2, 1
8 divu r3, r1, r2
9 check_r3 0
11 test_name DIVU_2
12 mvi r1, 1
13 mvi r2, 1
14 divu r3, r1, r2
15 check_r3 1
17 test_name DIVU_3
18 mvi r1, 0
19 mvi r2, 0
20 divu r3, r1, r2
21 check_excp 16
23 test_name DIVU_4
24 load r1 0xabcdef12
25 load r2 0x12345
26 divu r3, r1, r2
27 check_r3 0x9700
29 end