URL
https://opencores.org/ocsvn/fwrisc/fwrisc/trunk
Subversion Repositories fwrisc
[/] [fwrisc/] [trunk/] [ve/] [fwrisc/] [tests/] [riscv-compliance/] [riscv-test-suite/] [rv32ua/] [rv64ua/] [amominu_w.S] - Rev 2
Compare with Previous | Blame | View Log
# See LICENSE for license details.
#*****************************************************************************
# amominu_d.S
#-----------------------------------------------------------------------------
#
# Test amominu.w instruction.
#
#include "riscv_test.h"
#include "compliance_test.h"
#include "compliance_io.h"
#include "aw_test_macros.h"
RVTEST_RV64U
RVTEST_CODE_BEGIN
TEST_CASE(2, a4, 0xffffffff80000000, \
li a0, 0xffffffff80000000; \
li a1, 0xfffffffffffff800; \
la a3, amo_operand; \
sw a0, 0(a3); \
amominu.w a4, a1, 0(a3); \
)
TEST_CASE(3, a5, 0xffffffff80000000, lw a5, 0(a3))
TEST_CASE(4, a4, 0, \
li a1, 0xffffffffffffffff; \
sw x0, 0(a3); \
amominu.w a4, a1, 0(a3); \
)
TEST_CASE(5, a5, 0, lw a5, 0(a3))
TEST_PASSFAIL
RVTEST_CODE_END
.bss
.align 3
amo_operand:
.dword 0
.data
RV_COMPLIANCE_DATA_BEGIN
test_res:
.fill 40, 4, -1
RV_COMPLIANCE_DATA_END