repo_id
string
size
int64
file_path
string
content
string
mary-phuong/intercode-ctf
1,136
data/ctf/task_assets/81/chall_3.S
.arch armv8-a .file "chall_3.c" .text .align 2 .global func1 .type func1, %function func1: stp x29, x30, [sp, -48]! add x29, sp, 0 str w0, [x29, 28] str wzr, [x29, 44] b .L2 .L4: ldr w0, [x29, 28] and w0, w0, 1 cmp w0, 0 beq .L3 ldr w0, [x29, 44] bl func2 str w0, [x29, 44] .L3: ldr w0, [x29, 28] lsr...
MassinissaDjellouli/CTFStuff
23,728
tools/ghidra_11.2.1_PUBLIC/Ghidra/Processors/HCS08/data/test-vectors/HCS08_tv.s
.hcs08 .area DIRECT (PAG) ;.setdp 0, DIRECT ;low_data1: ;.ds 1 .area PROGRAM (ABS) .org 0x80 LOW_SUB_TEST: RTS .org 0x2000 HIGH_SUB_TEST: RTS ; @if defined(HCS08) || defined(HC08) || defined(HC05) ; : ADC OP1 is (op=0xA9 | op=0xB9 | op=0xC9 | op=0xD9 | op=0xE9 | op=0xF9) ... & OP1 ADC #0xFE...
MassinissaDjellouli/CTFStuff
23,835
tools/ghidra_11.2.1_PUBLIC/Ghidra/Processors/HCS08/data/test-vectors/HC05_tv.s
.hc05 .area DIRECT (PAG) ;.setdp 0, DIRECT ;low_data1: ;.ds 1 .area PROGRAM (ABS) .org 0x80 LOW_SUB_TEST: RTS .org 0x2000 HIGH_SUB_TEST: RTS ; @if defined(HCS08) || defined(HC08) || defined(HC05) ; : ADC OP1 is (op=0xA9 | op=0xB9 | op=0xC9 | op=0xD9 | op=0xE9 | op=0xF9) ... & OP1 ADC #0xFE ...
MassinissaDjellouli/CTFStuff
23,737
tools/ghidra_11.2.1_PUBLIC/Ghidra/Processors/HCS08/data/test-vectors/HC08_tv.s
.hc08 .area DIRECT (PAG) ;.setdp 0, DIRECT ;low_data1: ;.ds 1 .area PROGRAM (ABS) .org 0x80 LOW_SUB_TEST: RTS .org 0x2000 HIGH_SUB_TEST: RTS ; @if defined(HCS08) || defined(HC08) || defined(HC05) ; : ADC OP1 is (op=0xA9 | op=0xB9 | op=0xC9 | op=0xD9 | op=0xE9 | op=0xF9) ... & OP1 ADC #0xFE ...
MassinissaDjellouli/CTFStuff
2,272
tools/ghidra_11.2.1_PUBLIC/docs/GhidraClass/Advanced/src/Examples/inline.s
.file "inline.c" .intel_syntax noprefix .section .rodata .LC0: .string "\nUsage: %s arg1 arg2\n\n" .LC1: .string "\nSum of %lu and %lu: %lu\n\n" .text .globl main .type main, @function main: .LFB2: sub rsp, 40 .LCFI0: mov DWORD PTR [rsp+12], edi mov QWORD PTR [rsp], rsi cmp DWORD PTR [rsp+12], 3 je .L2 mo...
MassinissaDjellouli/CTFStuff
1,927
tools/ghidra_11.2.1_PUBLIC/docs/GhidraClass/Advanced/src/Examples/compilerVsDecompiler.s
.file "compilerVsDecompiler.c" .intel_syntax noprefix .text .p2align 4,,15 .globl calls_memcmp .type calls_memcmp, @function calls_memcmp: .LFB3: .cfi_startproc mov rax, rdi mov rcx, rdx mov rdi, rsi cmp rdx, rdx mov rsi, rax repz cmpsb seta al setb dl sub al, dl movsx eax, al ret .cfi_endproc .LFE3:...
MassinissaDjellouli/CTFStuff
1,968
tools/ghidra_11.2.1_PUBLIC/docs/GhidraClass/Advanced/src/Examples/switch.s
.file "switch.c" .intel_syntax noprefix .section .rodata.str1.1,"aMS",@progbits,1 .LC0: .string "\nUsage: %s switch_var input\n\n" .LC1: .string "Returning %ld\n" .section .text.startup,"ax",@progbits .p2align 4,,15 .globl main .type main, @function main: .LFB20: .cfi_startproc push rbp .cfi_def_cfa_offset ...
matoval/xv6-rust
2,942
bootloader/src/boot.S
# Start the first CPU: switch to 32-bit protected mode, jump into C. # The BIOS loads this code from the first sector of the hard disk into # memory at physical address 0x7c00 and starts executing in real mode # with %cs=0 %ip=7c00. .code16 # Assemble for 16-bit mode .globl start start: cli ...
MatthewZelriche/Lantern-OS
1,796
bootloaders/raspi/src/main.S
.section ".text.boot" .globl kstart kstart: # Set up a temporary stack for the primary core before we transition over to rust code ldr x1, =__STACK_START mov sp, x1 # Zero BSS, if such a section exists ldr x2, =__BSS_END ldr x3, =__BSS_START zero_bss: # Check if we zeroed out all the BSS dat...
matthiasgoergens/zkvm
2,493
riscv-testdata/testdata/rv64si/icache-alias.S
# See LICENSE for license details. #***************************************************************************** # icache-alias.S #----------------------------------------------------------------------------- # # Test that instruction memory appears to be physically addressed, i.e., # that disagreements in the low-or...
matthiasgoergens/zkvm
3,707
riscv-testdata/testdata/rv64si/ma_fetch.S
# See LICENSE for license details. #***************************************************************************** # ma_fetch.S #----------------------------------------------------------------------------- # # Test misaligned fetch trap. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64S RVTEST_CODE_BEG...
matthiasgoergens/zkvm
4,539
riscv-testdata/testdata/rv64si/csr.S
# See LICENSE for license details. #***************************************************************************** # csr.S #----------------------------------------------------------------------------- # # Test CSRRx and CSRRxI instructions. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64S RVTEST_CODE_...
matthiasgoergens/zkvm
2,626
riscv-testdata/testdata/rv64si/dirty.S
# See LICENSE for license details. #***************************************************************************** # dirty.S #----------------------------------------------------------------------------- # # Test VM referenced and dirty bits. # #include "riscv_test.h" #include "test_macros.h" #if (DRAM_BASE >> 30 << ...
matthiasgoergens/zkvm
1,956
riscv-testdata/testdata/rv64si/scall.S
# See LICENSE for license details. #***************************************************************************** # scall.S #----------------------------------------------------------------------------- # # Test syscall trap. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64S RVTEST_CODE_BEGIN #ifdef _...
matthiasgoergens/zkvm
2,248
riscv-testdata/testdata/rv32uzbb/rori.S
# See LICENSE for license details. #***************************************************************************** # rori.S #----------------------------------------------------------------------------- # # Test rori instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV32U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,253
riscv-testdata/testdata/rv32uzbb/rev8.S
# See LICENSE for license details. #***************************************************************************** # rev8.S #----------------------------------------------------------------------------- # # Test rev8 instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV32U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
3,648
riscv-testdata/testdata/rv32uzbb/rol.S
# See LICENSE for license details. #***************************************************************************** # rol.S #----------------------------------------------------------------------------- # # Test rol instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV32U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
2,011
riscv-testdata/testdata/rv32uzbb/ctz.S
# See LICENSE for license details. #***************************************************************************** # ctz.S #----------------------------------------------------------------------------- # # Test ctz instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV32U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
3,400
riscv-testdata/testdata/rv32uzbb/ror.S
# See LICENSE for license details. #***************************************************************************** # ror.S #----------------------------------------------------------------------------- # # Test ror instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV32U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
2,250
riscv-testdata/testdata/rv32uzbb/orc_b.S
# See LICENSE for license details. #***************************************************************************** # orc.b.S #----------------------------------------------------------------------------- # # Test orc.b instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV32U RVTEST_CODE_BEGIN #...
matthiasgoergens/zkvm
2,009
riscv-testdata/testdata/rv32uzbb/clz.S
# See LICENSE for license details. #***************************************************************************** # clz.S #----------------------------------------------------------------------------- # # Test clz instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV32U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
2,036
riscv-testdata/testdata/rv32uzbb/cpop.S
# See LICENSE for license details. #***************************************************************************** # cpop.S #----------------------------------------------------------------------------- # # Test cpop instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV32U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
3,396
riscv-testdata/testdata/rv64mi/illegal.S
# See LICENSE for license details. #***************************************************************************** # illegal.S #----------------------------------------------------------------------------- # # Test illegal instruction trap. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64M RVTEST_CODE_B...
matthiasgoergens/zkvm
3,285
riscv-testdata/testdata/rv64mi/ma_addr.S
# See LICENSE for license details. #***************************************************************************** # ma_addr.S #----------------------------------------------------------------------------- # # Test misaligned ld/st trap. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64M RVTEST_CODE_BEGI...
matthiasgoergens/zkvm
1,119
riscv-testdata/testdata/rv64mi/ld-misaligned.S
# See LICENSE for license details. #***************************************************************************** # lw-unaligned.S #----------------------------------------------------------------------------- # # Test that misaligned loads work or raise the correct exception # This test assumes the target is little-e...
matthiasgoergens/zkvm
1,361
riscv-testdata/testdata/rv64mi/zicntr.S
# See LICENSE for license details. #***************************************************************************** # zicntr.S #----------------------------------------------------------------------------- # # Test if Zicntr is implemented correctly # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64M RVTES...
matthiasgoergens/zkvm
1,157
riscv-testdata/testdata/rv64mi/access.S
# See LICENSE for license details. #***************************************************************************** # access.S #----------------------------------------------------------------------------- # # Test access-exception behavior. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64M RVTEST_CODE_B...
matthiasgoergens/zkvm
1,052
riscv-testdata/testdata/rv64mi/sd-misaligned.S
# See LICENSE for license details. #***************************************************************************** # sd-unaligned.S #----------------------------------------------------------------------------- # # Test that misaligned stores work or raise the correct exception # This test assumes the target is little-...
matthiasgoergens/zkvm
2,833
riscv-testdata/testdata/rv64mi/breakpoint.S
# See LICENSE for license details. #***************************************************************************** # breakpoint.S #----------------------------------------------------------------------------- # # Test breakpoints, if they are implemented. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64...
matthiasgoergens/zkvm
2,806
riscv-testdata/testdata/rv64uzbb/rori.S
# See LICENSE for license details. #***************************************************************************** # rori.S #----------------------------------------------------------------------------- # # Test rori instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,667
riscv-testdata/testdata/rv64uzbb/zext_h.S
# See LICENSE for license details. #***************************************************************************** # sext_h.S #----------------------------------------------------------------------------- # # Test zext.h instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN ...
matthiasgoergens/zkvm
2,897
riscv-testdata/testdata/rv64uzbb/minu.S
# See LICENSE for license details. #***************************************************************************** # minu.S #----------------------------------------------------------------------------- # # Test minu instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,616
riscv-testdata/testdata/rv64uzbb/roriw.S
# See LICENSE for license details. #***************************************************************************** # rori.S #----------------------------------------------------------------------------- # # Test rori instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,063
riscv-testdata/testdata/rv64uzbb/cpopw.S
# See LICENSE for license details. #***************************************************************************** # cpopw.S #----------------------------------------------------------------------------- # # Test cpopw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #...
matthiasgoergens/zkvm
3,551
riscv-testdata/testdata/rv64uzbb/andn.S
# See LICENSE for license details. #***************************************************************************** # andn.S #----------------------------------------------------------------------------- # # Test and instruction. # This test is forked from and.S # #include "riscv_test.h" #include "test_macros.h" RVTES...
matthiasgoergens/zkvm
2,667
riscv-testdata/testdata/rv64uzbb/sext_h.S
# See LICENSE for license details. #***************************************************************************** # sext_h.S #----------------------------------------------------------------------------- # # Test sext.h instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN ...
matthiasgoergens/zkvm
2,613
riscv-testdata/testdata/rv64uzbb/rev8.S
# See LICENSE for license details. #***************************************************************************** # rev8.S #----------------------------------------------------------------------------- # # Test rev8 instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
3,222
riscv-testdata/testdata/rv64uzbb/max.S
# See LICENSE for license details. #***************************************************************************** # max.S #----------------------------------------------------------------------------- # # Test max instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
4,360
riscv-testdata/testdata/rv64uzbb/rolw.S
# See LICENSE for license details. #***************************************************************************** # rolw.S #----------------------------------------------------------------------------- # # Test rolw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
4,230
riscv-testdata/testdata/rv64uzbb/rol.S
# See LICENSE for license details. #***************************************************************************** # rol.S #----------------------------------------------------------------------------- # # Test rol instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
3,220
riscv-testdata/testdata/rv64uzbb/min.S
# See LICENSE for license details. #***************************************************************************** # min.S #----------------------------------------------------------------------------- # # Test min instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
2,171
riscv-testdata/testdata/rv64uzbb/ctz.S
# See LICENSE for license details. #***************************************************************************** # ctz.S #----------------------------------------------------------------------------- # # Test ctz instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
4,231
riscv-testdata/testdata/rv64uzbb/ror.S
# See LICENSE for license details. #***************************************************************************** # ror.S #----------------------------------------------------------------------------- # # Test ror instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
3,537
riscv-testdata/testdata/rv64uzbb/xnor.S
# See LICENSE for license details. #***************************************************************************** # xnor.S #----------------------------------------------------------------------------- # # Test xnor instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,570
riscv-testdata/testdata/rv64uzbb/orc_b.S
# See LICENSE for license details. #***************************************************************************** # orc.b.S #----------------------------------------------------------------------------- # # Test orc.b instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #...
matthiasgoergens/zkvm
2,174
riscv-testdata/testdata/rv64uzbb/clz.S
# See LICENSE for license details. #***************************************************************************** # clz.S #----------------------------------------------------------------------------- # # Test clz instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
3,490
riscv-testdata/testdata/rv64uzbb/orn.S
# See LICENSE for license details. #***************************************************************************** # orn.S #----------------------------------------------------------------------------- # # Test orn instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
2,903
riscv-testdata/testdata/rv64uzbb/maxu.S
# See LICENSE for license details. #***************************************************************************** # maxu.S #----------------------------------------------------------------------------- # # Test maxu instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
4,068
riscv-testdata/testdata/rv64uzbb/rorw.S
# See LICENSE for license details. #***************************************************************************** # rorw.S #----------------------------------------------------------------------------- # # Test rorw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,667
riscv-testdata/testdata/rv64uzbb/sext_b.S
# See LICENSE for license details. #***************************************************************************** # sext_b.S #----------------------------------------------------------------------------- # # Test sext.b instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN ...
matthiasgoergens/zkvm
2,038
riscv-testdata/testdata/rv64uzbb/ctzw.S
# See LICENSE for license details. #***************************************************************************** # ctzw.S #----------------------------------------------------------------------------- # # Test ctzw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,036
riscv-testdata/testdata/rv64uzbb/clzw.S
# See LICENSE for license details. #***************************************************************************** # clzw.S #----------------------------------------------------------------------------- # # Test clzw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,193
riscv-testdata/testdata/rv64uzbb/cpop.S
# See LICENSE for license details. #***************************************************************************** # cpop.S #----------------------------------------------------------------------------- # # Test cpop instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
1,077
riscv-testdata/testdata/rv64ua/amomaxu_w.S
# See LICENSE for license details. #***************************************************************************** # amomaxu_d.S #----------------------------------------------------------------------------- # # Test amomaxu.w instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BE...
matthiasgoergens/zkvm
1,089
riscv-testdata/testdata/rv64ua/amomin_w.S
# See LICENSE for license details. #***************************************************************************** # amomin_d.S #----------------------------------------------------------------------------- # # Test amomin.w instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGI...
matthiasgoergens/zkvm
2,116
riscv-testdata/testdata/rv64ua/lrsc.S
# See LICENSE for license details. #***************************************************************************** # lrsr.S #----------------------------------------------------------------------------- # # Test LR/SC instructions. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN # g...
matthiasgoergens/zkvm
1,038
riscv-testdata/testdata/rv64ua/amomax_w.S
# See LICENSE for license details. #***************************************************************************** # amomax_d.S #----------------------------------------------------------------------------- # # Test amomax.w instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGI...
matthiasgoergens/zkvm
1,060
riscv-testdata/testdata/rv64ua/amominu_w.S
# See LICENSE for license details. #***************************************************************************** # amominu_d.S #----------------------------------------------------------------------------- # # Test amominu.w instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BE...
matthiasgoergens/zkvm
3,001
riscv-testdata/testdata/rv32uzba/sh3add.S
# See LICENSE for license details. #***************************************************************************** # sh3add.S #----------------------------------------------------------------------------- # # Test sh3add instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV32U RVTEST_CODE_BEGIN ...
matthiasgoergens/zkvm
2,983
riscv-testdata/testdata/rv32uzba/sh2add.S
# See LICENSE for license details. #***************************************************************************** # sh2add.S #----------------------------------------------------------------------------- # # Test sh2add instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV32U RVTEST_CODE_BEGIN ...
matthiasgoergens/zkvm
2,982
riscv-testdata/testdata/rv32uzba/sh1add.S
# See LICENSE for license details. #***************************************************************************** # sh1add.S #----------------------------------------------------------------------------- # # Test sh1add instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV32U RVTEST_CODE_BEGIN ...
matthiasgoergens/zkvm
2,869
riscv-testdata/testdata/rv64uzbs/binvi.S
# See LICENSE for license details. #***************************************************************************** # binvi.S #----------------------------------------------------------------------------- # # Test binvi instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #...
matthiasgoergens/zkvm
4,285
riscv-testdata/testdata/rv64uzbs/binv.S
# See LICENSE for license details. #***************************************************************************** # binv.S #----------------------------------------------------------------------------- # # Test binv instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
3,823
riscv-testdata/testdata/rv64uzbs/bset.S
# See LICENSE for license details. #***************************************************************************** # bset.S #----------------------------------------------------------------------------- # # Test bset instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,312
riscv-testdata/testdata/rv64uzbs/bexti.S
# See LICENSE for license details. #***************************************************************************** # bexti.S #----------------------------------------------------------------------------- # # Test bexti instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #...
matthiasgoergens/zkvm
3,378
riscv-testdata/testdata/rv64uzbs/bext.S
# See LICENSE for license details. #***************************************************************************** # bext.S #----------------------------------------------------------------------------- # # Test bext instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
3,811
riscv-testdata/testdata/rv64uzbs/bclr.S
# See LICENSE for license details. #***************************************************************************** # bclr.S #----------------------------------------------------------------------------- # # Test bclr instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,585
riscv-testdata/testdata/rv64uzbs/bseti.S
# See LICENSE for license details. #***************************************************************************** # bset.S #----------------------------------------------------------------------------- # # Test bset instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,600
riscv-testdata/testdata/rv64uzbs/bclri.S
# See LICENSE for license details. #***************************************************************************** # bclri.S #----------------------------------------------------------------------------- # # Test bclri instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #...
matthiasgoergens/zkvm
3,184
riscv-testdata/testdata/rv64ui/addw.S
# See LICENSE for license details. #***************************************************************************** # addw.S #----------------------------------------------------------------------------- # # Test addw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,028
riscv-testdata/testdata/rv64ui/blt.S
# See LICENSE for license details. #***************************************************************************** # blt.S #----------------------------------------------------------------------------- # # Test blt instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
2,538
riscv-testdata/testdata/rv64ui/bgeu.S
# See LICENSE for license details. #***************************************************************************** # bgeu.S #----------------------------------------------------------------------------- # # Test bgeu instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
1,680
riscv-testdata/testdata/rv64ui/andi.S
# See LICENSE for license details. #***************************************************************************** # andi.S #----------------------------------------------------------------------------- # # Test andi instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
4,358
riscv-testdata/testdata/rv64ui/sllw.S
# See LICENSE for license details. #***************************************************************************** # sllw.S #----------------------------------------------------------------------------- # # Test sllw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,750
riscv-testdata/testdata/rv64ui/sd.S
# See LICENSE for license details. #***************************************************************************** # sd.S #----------------------------------------------------------------------------- # # Test sd instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #------...
matthiasgoergens/zkvm
2,827
riscv-testdata/testdata/rv64ui/slli.S
# See LICENSE for license details. #***************************************************************************** # slli.S #----------------------------------------------------------------------------- # # Test slli instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,366
riscv-testdata/testdata/rv64ui/bltu.S
# See LICENSE for license details. #***************************************************************************** # bltu.S #----------------------------------------------------------------------------- # # Test bltu instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,149
riscv-testdata/testdata/rv64ui/bge.S
# See LICENSE for license details. #***************************************************************************** # bge.S #----------------------------------------------------------------------------- # # Test bge instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
2,975
riscv-testdata/testdata/rv64ui/srliw.S
# See LICENSE for license details. #***************************************************************************** # srliw.S #----------------------------------------------------------------------------- # # Test srliw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #...
matthiasgoergens/zkvm
4,389
riscv-testdata/testdata/rv64ui/sraw.S
# See LICENSE for license details. #***************************************************************************** # sraw.S #----------------------------------------------------------------------------- # # Test sraw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,371
riscv-testdata/testdata/rv64ui/addiw.S
# See LICENSE for license details. #***************************************************************************** # addiw.S #----------------------------------------------------------------------------- # # Test addiw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #...
matthiasgoergens/zkvm
3,122
riscv-testdata/testdata/rv64ui/sub.S
# See LICENSE for license details. #***************************************************************************** # sub.S #----------------------------------------------------------------------------- # # Test sub instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
2,302
riscv-testdata/testdata/rv64ui/lbu.S
# See LICENSE for license details. #***************************************************************************** # lbu.S #----------------------------------------------------------------------------- # # Test lbu instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
3,114
riscv-testdata/testdata/rv64ui/sraiw.S
# See LICENSE for license details. #***************************************************************************** # sraiw.S #----------------------------------------------------------------------------- # # Test sraiw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #...
matthiasgoergens/zkvm
3,160
riscv-testdata/testdata/rv64ui/subw.S
# See LICENSE for license details. #***************************************************************************** # subw.S #----------------------------------------------------------------------------- # # Test subw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...
matthiasgoergens/zkvm
2,610
riscv-testdata/testdata/rv64ui/sb.S
# See LICENSE for license details. #***************************************************************************** # sb.S #----------------------------------------------------------------------------- # # Test sb instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #------...
matthiasgoergens/zkvm
2,949
riscv-testdata/testdata/rv64ui/slt.S
# See LICENSE for license details. #***************************************************************************** # slt.S #----------------------------------------------------------------------------- # # Test slt instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
2,028
riscv-testdata/testdata/rv64ui/beq.S
# See LICENSE for license details. #***************************************************************************** # beq.S #----------------------------------------------------------------------------- # # Test beq instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
15,420
riscv-testdata/testdata/rv64ui/ma_data.S
# See LICENSE for license details. #***************************************************************************** # ma_data.S #----------------------------------------------------------------------------- # # Test misaligned ld/st data. # Based on rv64mi-ma_addr.S # #include "riscv_test.h" #include "test_macros.h" R...
matthiasgoergens/zkvm
2,345
riscv-testdata/testdata/rv64ui/ld.S
# See LICENSE for license details. #***************************************************************************** # ld.S #----------------------------------------------------------------------------- # # Test ld instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #------...
matthiasgoergens/zkvm
1,087
riscv-testdata/testdata/rv64ui/jal.S
# See LICENSE for license details. #***************************************************************************** # jal.S #----------------------------------------------------------------------------- # # Test jal instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
2,680
riscv-testdata/testdata/rv64ui/sw.S
# See LICENSE for license details. #***************************************************************************** # sw.S #----------------------------------------------------------------------------- # # Test sw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #------...
matthiasgoergens/zkvm
2,623
riscv-testdata/testdata/rv64ui/or.S
# See LICENSE for license details. #***************************************************************************** # or.S #----------------------------------------------------------------------------- # # Test or instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #------...
matthiasgoergens/zkvm
2,642
riscv-testdata/testdata/rv64ui/sh.S
# See LICENSE for license details. #***************************************************************************** # sh.S #----------------------------------------------------------------------------- # # Test sh instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #------...
matthiasgoergens/zkvm
2,326
riscv-testdata/testdata/rv64ui/lwu.S
# See LICENSE for license details. #***************************************************************************** # lwu.S #----------------------------------------------------------------------------- # # Test lwu instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
2,959
riscv-testdata/testdata/rv64ui/slliw.S
# See LICENSE for license details. #***************************************************************************** # slliw.S #----------------------------------------------------------------------------- # # Test slliw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #...
matthiasgoergens/zkvm
2,308
riscv-testdata/testdata/rv64ui/lw.S
# See LICENSE for license details. #***************************************************************************** # lw.S #----------------------------------------------------------------------------- # # Test lw instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #------...
matthiasgoergens/zkvm
2,310
riscv-testdata/testdata/rv64ui/lhu.S
# See LICENSE for license details. #***************************************************************************** # lhu.S #----------------------------------------------------------------------------- # # Test lhu instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
4,022
riscv-testdata/testdata/rv64ui/sra.S
# See LICENSE for license details. #***************************************************************************** # sra.S #----------------------------------------------------------------------------- # # Test sra instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #----...
matthiasgoergens/zkvm
1,735
riscv-testdata/testdata/rv64ui/jalr.S
# See LICENSE for license details. #***************************************************************************** # jalr.S #----------------------------------------------------------------------------- # # Test jalr instruction. # #include "riscv_test.h" #include "test_macros.h" RVTEST_RV64U RVTEST_CODE_BEGIN #--...