├── .DS_Store ├── .gitignore ├── README.md ├── TODO ├── emulator ├── .DS_Store ├── BUGS ├── LICENSE ├── Makefile ├── WISHLIST ├── args.cpp ├── args.o ├── core.cpp ├── core.o ├── enc.cpp ├── enc.o ├── harptool ├── harptool.cpp ├── harptool.o ├── include │ ├── archdef.h │ ├── args.h │ ├── asm-tokens.h │ ├── core.h │ ├── debug.h │ ├── enc.h │ ├── harpfloat.h │ ├── help.h │ ├── instruction.h │ ├── mem.h │ ├── obj.h │ ├── qsim-harp.h │ ├── types.h │ └── util.h ├── instruction.cpp ├── instruction.o ├── libharplib.a ├── libharplib.so ├── mem.cpp ├── mem.o ├── qsim-harp.cpp ├── results.txt ├── riscv_tests │ ├── C.ADD.elf.hex │ ├── C.ADDI.elf.hex │ ├── C.ADDI16SP.elf.hex │ ├── C.ADDI4SPN.elf.hex │ ├── C.AND.elf.hex │ ├── C.ANDI.elf.hex │ ├── C.BEQZ.elf.hex │ ├── C.BNEZ.elf.hex │ ├── C.J.elf.hex │ ├── C.JAL.elf.hex │ ├── C.JALR.elf.hex │ ├── C.JR.elf.hex │ ├── C.LI.elf.hex │ ├── C.LUI.elf.hex │ ├── C.LW.elf.hex │ ├── C.LWSP.elf.hex │ ├── C.MV.elf.hex │ ├── C.OR.elf.hex │ ├── C.SLLI.elf.hex │ ├── C.SRAI.elf.hex │ ├── C.SRLI.elf.hex │ ├── C.SUB.elf.hex │ ├── C.SW.elf.hex │ ├── C.SWSP.elf.hex │ ├── C.XOR.elf.hex │ ├── DIV.elf.hex │ ├── DIVU.elf.hex │ ├── I-ADD-01.elf.hex │ ├── I-ADDI-01.elf.hex │ ├── I-AND-01.elf.hex │ ├── I-ANDI-01.elf.hex │ ├── I-AUIPC-01.elf.hex │ ├── I-BEQ-01.elf.hex │ ├── I-BGE-01.elf.hex │ ├── I-BGEU-01.elf.hex │ ├── I-BLT-01.elf.hex │ ├── I-BLTU-01.elf.hex │ ├── I-BNE-01.elf.hex │ ├── I-CSRRC-01.elf.hex │ ├── I-CSRRCI-01.elf.hex │ ├── I-CSRRS-01.elf.hex │ ├── I-CSRRSI-01.elf.hex │ ├── I-CSRRW-01.elf.hex │ ├── I-CSRRWI-01.elf.hex │ ├── I-DELAY_SLOTS-01.elf.hex │ ├── I-EBREAK-01.elf.hex │ ├── I-ECALL-01.elf.hex │ ├── I-ENDIANESS-01.elf.hex │ ├── I-FENCE.I-01.elf.hex │ ├── I-IO.elf.hex │ ├── I-JAL-01.elf.hex │ ├── I-JALR-01.elf.hex │ ├── I-LB-01.elf.hex │ ├── I-LBU-01.elf.hex │ ├── I-LH-01.elf.hex │ ├── I-LHU-01.elf.hex │ ├── I-LUI-01.elf.hex │ ├── I-LW-01.elf.hex │ ├── I-MISALIGN_JMP-01.elf.hex │ ├── I-MISALIGN_LDST-01.elf.hex │ ├── I-NOP-01.elf.hex │ ├── I-OR-01.elf.hex │ ├── I-ORI-01.elf.hex │ ├── I-RF_size-01.elf.hex │ ├── I-RF_width-01.elf.hex │ ├── I-RF_x0-01.elf.hex │ ├── I-SB-01.elf.hex │ ├── I-SH-01.elf.hex │ ├── I-SLL-01.elf.hex │ ├── I-SLLI-01.elf.hex │ ├── I-SLT-01.elf.hex │ ├── I-SLTI-01.elf.hex │ ├── I-SLTIU-01.elf.hex │ ├── I-SLTU-01.elf.hex │ ├── I-SRA-01.elf.hex │ ├── I-SRAI-01.elf.hex │ ├── I-SRL-01.elf.hex │ ├── I-SRLI-01.elf.hex │ ├── I-SUB-01.elf.hex │ ├── I-SW-01.elf.hex │ ├── I-XOR-01.elf.hex │ ├── I-XORI-01.elf.hex │ ├── MUL.elf.hex │ ├── MULH.elf.hex │ ├── MULHSU.elf.hex │ ├── MULHU.elf.hex │ ├── REM.elf.hex │ ├── REMU.elf.hex │ ├── debugPlugin.hex │ ├── debugPluginExternal.hex │ ├── dhrystoneO3.hex │ ├── dhrystoneO3C.hex │ ├── dhrystoneO3M.hex │ ├── dhrystoneO3MC.hex │ ├── freeRTOS_demo.hex │ ├── machineCsr.hex │ ├── machineCsrCompressed.hex │ ├── mmu.hex │ ├── rv32uc-p-rvc.hex │ ├── rv32ui-p-add.hex │ ├── rv32ui-p-addi.hex │ ├── rv32ui-p-and.hex │ ├── rv32ui-p-andi.hex │ ├── rv32ui-p-auipc.hex │ ├── rv32ui-p-beq.hex │ ├── rv32ui-p-bge.hex │ ├── rv32ui-p-bgeu.hex │ ├── rv32ui-p-blt.hex │ ├── rv32ui-p-bltu.hex │ ├── rv32ui-p-bne.hex │ ├── rv32ui-p-fence_i.hex │ ├── rv32ui-p-jal.hex │ ├── rv32ui-p-jalr.hex │ ├── rv32ui-p-lb.hex │ ├── rv32ui-p-lbu.hex │ ├── rv32ui-p-lh.hex │ ├── rv32ui-p-lhu.hex │ ├── rv32ui-p-lui.hex │ ├── rv32ui-p-lui.hex.hex │ ├── rv32ui-p-lw.hex │ ├── rv32ui-p-or.hex │ ├── rv32ui-p-ori.hex │ ├── rv32ui-p-sb.hex │ ├── rv32ui-p-sh.hex │ ├── rv32ui-p-simple.hex │ ├── rv32ui-p-sll.hex │ ├── rv32ui-p-slli.hex │ ├── rv32ui-p-slt.hex │ ├── rv32ui-p-slti.hex │ ├── rv32ui-p-sltiu.hex │ ├── rv32ui-p-sltu.hex │ ├── rv32ui-p-sra.hex │ ├── rv32ui-p-srai.hex │ ├── rv32ui-p-srl.hex │ ├── rv32ui-p-srli.hex │ ├── rv32ui-p-sub.hex │ ├── rv32ui-p-sw.hex │ ├── rv32ui-p-xor.hex │ ├── rv32ui-p-xori.hex │ ├── rv32um-p-div.hex │ ├── rv32um-p-divu.hex │ ├── rv32um-p-mul.hex │ ├── rv32um-p-mulh.hex │ ├── rv32um-p-mulhsu.hex │ ├── rv32um-p-mulhu.hex │ ├── rv32um-p-rem.hex │ ├── rv32um-p-remu.hex │ └── testA.hex ├── test.sh ├── test_riscv.sh ├── util.cpp ├── util.o └── vortex_software │ ├── .DS_Store │ ├── Makefile │ ├── linker.ld │ ├── vortex_test.dump │ ├── vortex_test.elf │ ├── vortex_test.hex │ ├── vx_include │ ├── .DS_Store │ ├── vx_front.c │ └── vx_front.h │ ├── vx_main.c │ └── vx_os │ ├── .DS_Store │ ├── vx_back │ ├── vx_back.c │ ├── vx_back.h │ └── vx_back.s │ ├── vx_io │ ├── .DS_Store │ ├── vx_io.c │ ├── vx_io.h │ └── vx_io.s │ └── vx_util │ ├── .DS_Store │ ├── queue.h │ └── queue.s ├── kernel ├── .DS_Store ├── Makefile ├── linker.ld ├── vortex_test.dump ├── vortex_test.elf ├── vortex_test.hex ├── vx_include │ ├── .DS_Store │ ├── vx_front.c │ └── vx_front.h ├── vx_main.c └── vx_os │ ├── .DS_Store │ ├── vx_back │ ├── vx_back.c │ ├── vx_back.h │ └── vx_back.s │ ├── vx_io │ ├── .DS_Store │ ├── vx_io.c │ ├── vx_io.h │ └── vx_io.s │ └── vx_util │ ├── .DS_Store │ ├── queue.h │ └── queue.s ├── results.txt └── rtl ├── Makefile ├── VX_alu.v ├── VX_context.v ├── VX_context_slave.v ├── VX_csr_handler.v ├── VX_d_e_reg.v ├── VX_decode.v ├── VX_define.h ├── VX_define.v ├── VX_e_m_reg.v ├── VX_execute.v ├── VX_f_d_reg.v ├── VX_fetch.v ├── VX_forwarding.v ├── VX_m_w_reg.v ├── VX_memory.v ├── VX_register_file.v ├── VX_register_file_master_slave.v ├── VX_register_file_slave.v ├── VX_warp.v ├── VX_writeback.v ├── Vortex.v ├── obj_dir ├── VVortex ├── VVortex.cpp ├── VVortex.h ├── VVortex.mk ├── VVortex__ALL.a ├── VVortex__ALLcls.cpp ├── VVortex__ALLcls.d ├── VVortex__ALLcls.o ├── VVortex__ALLsup.cpp ├── VVortex__ALLsup.d ├── VVortex__ALLsup.o ├── VVortex__Syms.cpp ├── VVortex__Syms.h ├── VVortex__ver.d ├── VVortex__verFiles.dat ├── VVortex_classes.mk ├── test_bench.d ├── test_bench.o ├── verilated.d └── verilated.o ├── ram.h ├── results.txt ├── test_bench.cpp └── test_bench.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ./rtl/obj_dir/debug.txt 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | 2 | 3 | * Add L1 cache + banked scratchpad 4 | * csri bug? 5 | -------------------------------------------------------------------------------- /emulator/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/.DS_Store -------------------------------------------------------------------------------- /emulator/BUGS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emulator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/LICENSE -------------------------------------------------------------------------------- /emulator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/Makefile -------------------------------------------------------------------------------- /emulator/WISHLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/WISHLIST -------------------------------------------------------------------------------- /emulator/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/args.cpp -------------------------------------------------------------------------------- /emulator/args.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/args.o -------------------------------------------------------------------------------- /emulator/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/core.cpp -------------------------------------------------------------------------------- /emulator/core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/core.o -------------------------------------------------------------------------------- /emulator/enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/enc.cpp -------------------------------------------------------------------------------- /emulator/enc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/enc.o -------------------------------------------------------------------------------- /emulator/harptool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/harptool -------------------------------------------------------------------------------- /emulator/harptool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/harptool.cpp -------------------------------------------------------------------------------- /emulator/harptool.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/harptool.o -------------------------------------------------------------------------------- /emulator/include/archdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/archdef.h -------------------------------------------------------------------------------- /emulator/include/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/args.h -------------------------------------------------------------------------------- /emulator/include/asm-tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/asm-tokens.h -------------------------------------------------------------------------------- /emulator/include/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/core.h -------------------------------------------------------------------------------- /emulator/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/debug.h -------------------------------------------------------------------------------- /emulator/include/enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/enc.h -------------------------------------------------------------------------------- /emulator/include/harpfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/harpfloat.h -------------------------------------------------------------------------------- /emulator/include/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/help.h -------------------------------------------------------------------------------- /emulator/include/instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/instruction.h -------------------------------------------------------------------------------- /emulator/include/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/mem.h -------------------------------------------------------------------------------- /emulator/include/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/obj.h -------------------------------------------------------------------------------- /emulator/include/qsim-harp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/qsim-harp.h -------------------------------------------------------------------------------- /emulator/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/types.h -------------------------------------------------------------------------------- /emulator/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/include/util.h -------------------------------------------------------------------------------- /emulator/instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/instruction.cpp -------------------------------------------------------------------------------- /emulator/instruction.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/instruction.o -------------------------------------------------------------------------------- /emulator/libharplib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/libharplib.a -------------------------------------------------------------------------------- /emulator/libharplib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/libharplib.so -------------------------------------------------------------------------------- /emulator/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/mem.cpp -------------------------------------------------------------------------------- /emulator/mem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/mem.o -------------------------------------------------------------------------------- /emulator/qsim-harp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/qsim-harp.cpp -------------------------------------------------------------------------------- /emulator/results.txt: -------------------------------------------------------------------------------- 1 | start 2 | -------------------------------------------------------------------------------- /emulator/riscv_tests/C.ADD.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.ADD.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.ADDI.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.ADDI.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.ADDI16SP.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.ADDI16SP.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.ADDI4SPN.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.ADDI4SPN.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.AND.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.AND.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.ANDI.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.ANDI.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.BEQZ.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.BEQZ.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.BNEZ.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.BNEZ.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.J.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.J.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.JAL.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.JAL.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.JALR.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.JALR.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.JR.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.JR.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.LI.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.LI.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.LUI.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.LUI.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.LW.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.LW.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.LWSP.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.LWSP.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.MV.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.MV.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.OR.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.OR.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.SLLI.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.SLLI.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.SRAI.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.SRAI.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.SRLI.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.SRLI.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.SUB.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.SUB.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.SW.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.SW.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.SWSP.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.SWSP.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/C.XOR.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/C.XOR.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/DIV.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/DIV.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/DIVU.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/DIVU.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-ADD-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-ADD-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-ADDI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-ADDI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-AND-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-AND-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-ANDI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-ANDI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-AUIPC-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-AUIPC-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-BEQ-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-BEQ-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-BGE-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-BGE-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-BGEU-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-BGEU-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-BLT-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-BLT-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-BLTU-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-BLTU-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-BNE-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-BNE-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-CSRRC-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-CSRRC-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-CSRRCI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-CSRRCI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-CSRRS-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-CSRRS-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-CSRRSI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-CSRRSI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-CSRRW-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-CSRRW-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-CSRRWI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-CSRRWI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-DELAY_SLOTS-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-DELAY_SLOTS-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-EBREAK-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-EBREAK-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-ECALL-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-ECALL-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-ENDIANESS-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-ENDIANESS-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-FENCE.I-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-FENCE.I-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-IO.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-IO.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-JAL-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-JAL-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-JALR-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-JALR-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-LB-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-LB-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-LBU-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-LBU-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-LH-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-LH-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-LHU-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-LHU-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-LUI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-LUI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-LW-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-LW-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-MISALIGN_JMP-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-MISALIGN_JMP-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-MISALIGN_LDST-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-MISALIGN_LDST-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-NOP-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-NOP-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-OR-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-OR-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-ORI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-ORI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-RF_size-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-RF_size-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-RF_width-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-RF_width-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-RF_x0-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-RF_x0-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SB-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SB-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SH-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SH-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SLL-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SLL-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SLLI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SLLI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SLT-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SLT-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SLTI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SLTI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SLTIU-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SLTIU-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SLTU-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SLTU-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SRA-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SRA-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SRAI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SRAI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SRL-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SRL-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SRLI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SRLI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SUB-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SUB-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-SW-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-SW-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-XOR-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-XOR-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/I-XORI-01.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/I-XORI-01.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/MUL.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/MUL.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/MULH.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/MULH.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/MULHSU.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/MULHSU.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/MULHU.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/MULHU.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/REM.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/REM.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/REMU.elf.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/REMU.elf.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/debugPlugin.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/debugPlugin.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/debugPluginExternal.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/debugPluginExternal.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/dhrystoneO3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/dhrystoneO3.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/dhrystoneO3C.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/dhrystoneO3C.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/dhrystoneO3M.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/dhrystoneO3M.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/dhrystoneO3MC.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/dhrystoneO3MC.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/freeRTOS_demo.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/freeRTOS_demo.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/machineCsr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/machineCsr.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/machineCsrCompressed.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/machineCsrCompressed.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/mmu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/mmu.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32uc-p-rvc.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32uc-p-rvc.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-add.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-add.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-addi.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-addi.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-and.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-and.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-andi.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-andi.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-auipc.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-auipc.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-beq.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-beq.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-bge.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-bge.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-bgeu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-bgeu.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-blt.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-blt.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-bltu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-bltu.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-bne.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-bne.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-fence_i.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-fence_i.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-jal.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-jal.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-jalr.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-jalr.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-lb.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-lb.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-lbu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-lbu.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-lh.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-lh.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-lhu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-lhu.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-lui.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-lui.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-lui.hex.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-lui.hex.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-lw.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-lw.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-or.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-or.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-ori.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-ori.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-sb.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-sb.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-sh.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-sh.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-simple.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-simple.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-sll.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-sll.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-slli.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-slli.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-slt.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-slt.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-slti.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-slti.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-sltiu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-sltiu.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-sltu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-sltu.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-sra.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-sra.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-srai.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-srai.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-srl.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-srl.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-srli.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-srli.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-sub.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-sub.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-sw.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-sw.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-xor.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-xor.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32ui-p-xori.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32ui-p-xori.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32um-p-div.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32um-p-div.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32um-p-divu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32um-p-divu.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32um-p-mul.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32um-p-mul.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32um-p-mulh.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32um-p-mulh.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32um-p-mulhsu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32um-p-mulhsu.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32um-p-mulhu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32um-p-mulhu.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32um-p-rem.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32um-p-rem.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/rv32um-p-remu.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/rv32um-p-remu.hex -------------------------------------------------------------------------------- /emulator/riscv_tests/testA.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/riscv_tests/testA.hex -------------------------------------------------------------------------------- /emulator/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/test.sh -------------------------------------------------------------------------------- /emulator/test_riscv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/test_riscv.sh -------------------------------------------------------------------------------- /emulator/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/util.cpp -------------------------------------------------------------------------------- /emulator/util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/util.o -------------------------------------------------------------------------------- /emulator/vortex_software/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/.DS_Store -------------------------------------------------------------------------------- /emulator/vortex_software/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/Makefile -------------------------------------------------------------------------------- /emulator/vortex_software/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/linker.ld -------------------------------------------------------------------------------- /emulator/vortex_software/vortex_test.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vortex_test.dump -------------------------------------------------------------------------------- /emulator/vortex_software/vortex_test.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vortex_test.elf -------------------------------------------------------------------------------- /emulator/vortex_software/vortex_test.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vortex_test.hex -------------------------------------------------------------------------------- /emulator/vortex_software/vx_include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_include/.DS_Store -------------------------------------------------------------------------------- /emulator/vortex_software/vx_include/vx_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_include/vx_front.c -------------------------------------------------------------------------------- /emulator/vortex_software/vx_include/vx_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_include/vx_front.h -------------------------------------------------------------------------------- /emulator/vortex_software/vx_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_main.c -------------------------------------------------------------------------------- /emulator/vortex_software/vx_os/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_os/.DS_Store -------------------------------------------------------------------------------- /emulator/vortex_software/vx_os/vx_back/vx_back.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_os/vx_back/vx_back.c -------------------------------------------------------------------------------- /emulator/vortex_software/vx_os/vx_back/vx_back.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_os/vx_back/vx_back.h -------------------------------------------------------------------------------- /emulator/vortex_software/vx_os/vx_back/vx_back.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_os/vx_back/vx_back.s -------------------------------------------------------------------------------- /emulator/vortex_software/vx_os/vx_io/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_os/vx_io/.DS_Store -------------------------------------------------------------------------------- /emulator/vortex_software/vx_os/vx_io/vx_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_os/vx_io/vx_io.c -------------------------------------------------------------------------------- /emulator/vortex_software/vx_os/vx_io/vx_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_os/vx_io/vx_io.h -------------------------------------------------------------------------------- /emulator/vortex_software/vx_os/vx_io/vx_io.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_os/vx_io/vx_io.s -------------------------------------------------------------------------------- /emulator/vortex_software/vx_os/vx_util/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_os/vx_util/.DS_Store -------------------------------------------------------------------------------- /emulator/vortex_software/vx_os/vx_util/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_os/vx_util/queue.h -------------------------------------------------------------------------------- /emulator/vortex_software/vx_os/vx_util/queue.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/emulator/vortex_software/vx_os/vx_util/queue.s -------------------------------------------------------------------------------- /kernel/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/.DS_Store -------------------------------------------------------------------------------- /kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/Makefile -------------------------------------------------------------------------------- /kernel/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/linker.ld -------------------------------------------------------------------------------- /kernel/vortex_test.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vortex_test.dump -------------------------------------------------------------------------------- /kernel/vortex_test.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vortex_test.elf -------------------------------------------------------------------------------- /kernel/vortex_test.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vortex_test.hex -------------------------------------------------------------------------------- /kernel/vx_include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_include/.DS_Store -------------------------------------------------------------------------------- /kernel/vx_include/vx_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_include/vx_front.c -------------------------------------------------------------------------------- /kernel/vx_include/vx_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_include/vx_front.h -------------------------------------------------------------------------------- /kernel/vx_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_main.c -------------------------------------------------------------------------------- /kernel/vx_os/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_os/.DS_Store -------------------------------------------------------------------------------- /kernel/vx_os/vx_back/vx_back.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_os/vx_back/vx_back.c -------------------------------------------------------------------------------- /kernel/vx_os/vx_back/vx_back.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_os/vx_back/vx_back.h -------------------------------------------------------------------------------- /kernel/vx_os/vx_back/vx_back.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_os/vx_back/vx_back.s -------------------------------------------------------------------------------- /kernel/vx_os/vx_io/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_os/vx_io/.DS_Store -------------------------------------------------------------------------------- /kernel/vx_os/vx_io/vx_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_os/vx_io/vx_io.c -------------------------------------------------------------------------------- /kernel/vx_os/vx_io/vx_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_os/vx_io/vx_io.h -------------------------------------------------------------------------------- /kernel/vx_os/vx_io/vx_io.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_os/vx_io/vx_io.s -------------------------------------------------------------------------------- /kernel/vx_os/vx_util/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_os/vx_util/.DS_Store -------------------------------------------------------------------------------- /kernel/vx_os/vx_util/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_os/vx_util/queue.h -------------------------------------------------------------------------------- /kernel/vx_os/vx_util/queue.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/kernel/vx_os/vx_util/queue.s -------------------------------------------------------------------------------- /results.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rtl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/Makefile -------------------------------------------------------------------------------- /rtl/VX_alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_alu.v -------------------------------------------------------------------------------- /rtl/VX_context.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_context.v -------------------------------------------------------------------------------- /rtl/VX_context_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_context_slave.v -------------------------------------------------------------------------------- /rtl/VX_csr_handler.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_csr_handler.v -------------------------------------------------------------------------------- /rtl/VX_d_e_reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_d_e_reg.v -------------------------------------------------------------------------------- /rtl/VX_decode.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_decode.v -------------------------------------------------------------------------------- /rtl/VX_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_define.h -------------------------------------------------------------------------------- /rtl/VX_define.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_define.v -------------------------------------------------------------------------------- /rtl/VX_e_m_reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_e_m_reg.v -------------------------------------------------------------------------------- /rtl/VX_execute.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_execute.v -------------------------------------------------------------------------------- /rtl/VX_f_d_reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_f_d_reg.v -------------------------------------------------------------------------------- /rtl/VX_fetch.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_fetch.v -------------------------------------------------------------------------------- /rtl/VX_forwarding.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_forwarding.v -------------------------------------------------------------------------------- /rtl/VX_m_w_reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_m_w_reg.v -------------------------------------------------------------------------------- /rtl/VX_memory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_memory.v -------------------------------------------------------------------------------- /rtl/VX_register_file.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_register_file.v -------------------------------------------------------------------------------- /rtl/VX_register_file_master_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_register_file_master_slave.v -------------------------------------------------------------------------------- /rtl/VX_register_file_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_register_file_slave.v -------------------------------------------------------------------------------- /rtl/VX_warp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_warp.v -------------------------------------------------------------------------------- /rtl/VX_writeback.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/VX_writeback.v -------------------------------------------------------------------------------- /rtl/Vortex.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/Vortex.v -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex.cpp -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex.h -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex.mk -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex__ALL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex__ALL.a -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex__ALLcls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex__ALLcls.cpp -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex__ALLcls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex__ALLcls.d -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex__ALLcls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex__ALLcls.o -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex__ALLsup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex__ALLsup.cpp -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex__ALLsup.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex__ALLsup.d -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex__ALLsup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex__ALLsup.o -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex__Syms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex__Syms.cpp -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex__Syms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex__Syms.h -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex__ver.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex__ver.d -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex__verFiles.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex__verFiles.dat -------------------------------------------------------------------------------- /rtl/obj_dir/VVortex_classes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/VVortex_classes.mk -------------------------------------------------------------------------------- /rtl/obj_dir/test_bench.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/test_bench.d -------------------------------------------------------------------------------- /rtl/obj_dir/test_bench.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/test_bench.o -------------------------------------------------------------------------------- /rtl/obj_dir/verilated.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/verilated.d -------------------------------------------------------------------------------- /rtl/obj_dir/verilated.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/obj_dir/verilated.o -------------------------------------------------------------------------------- /rtl/ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/ram.h -------------------------------------------------------------------------------- /rtl/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/results.txt -------------------------------------------------------------------------------- /rtl/test_bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/test_bench.cpp -------------------------------------------------------------------------------- /rtl/test_bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felsabbagh3/Vortex/HEAD/rtl/test_bench.h --------------------------------------------------------------------------------