Fix breakpoint test when only one breakpoint present
[riscv-tests.git] / isa / rv32ui / amominu_w.S
1 # See LICENSE for license details.
2
3 #*****************************************************************************
4 # amominu_d.S
5 #-----------------------------------------------------------------------------
6 #
7 # Test amominu.w instruction.
8 #
9
10 #include "riscv_test.h"
11 #include "test_macros.h"
12
13 RVTEST_RV32U
14 RVTEST_CODE_BEGIN
15
16 TEST_CASE(2, a4, 0x80000000, \
17 li a0, 0x80000000; \
18 li a1, 0xfffff800; \
19 la a3, amo_operand; \
20 sw a0, 0(a3); \
21 amominu.w a4, a1, 0(a3); \
22 )
23
24 TEST_CASE(3, a5, 0x80000000, lw a5, 0(a3))
25
26 TEST_CASE(4, a4, 0, \
27 li a1, 0xffffffff; \
28 sw x0, 0(a3); \
29 amominu.w a4, a1, 0(a3); \
30 )
31
32 TEST_CASE(5, a5, 0, lw a5, 0(a3))
33
34 TEST_PASSFAIL
35
36 RVTEST_CODE_END
37
38 .data
39 RVTEST_DATA_BEGIN
40
41 TEST_DATA
42
43 RVTEST_DATA_END
44
45 .bss
46 .align 3
47 amo_operand:
48 .dword 0
49 .skip 65536