URL
https://opencores.org/ocsvn/potato/potato/trunk
Subversion Repositories potato
[/] [potato/] [trunk/] [riscv-tests/] [auipc.S] - Rev 26
Go to most recent revision | Compare with Previous | Blame | View Log
# See LICENSE for license details.#*****************************************************************************# auipc.S#-----------------------------------------------------------------------------## Test auipc instruction.##include "riscv_test.h"#include "test_macros.h"RVTEST_RV32URVTEST_CODE_BEGINTEST_CASE(2, a0, 10000, \.align 3; \lla a0, 1f + 10000; \jal a1, 1f; \1: sub a0, a0, a1; \)TEST_CASE(3, a0, -10000, \.align 3; \lla a0, 1f - 10000; \jal a1, 1f; \1: sub a0, a0, a1; \)TEST_PASSFAILRVTEST_CODE_END.dataRVTEST_DATA_BEGINTEST_DATARVTEST_DATA_END
Go to most recent revision | Compare with Previous | Blame | View Log
