mirror of
https://github.com/supleed2/ELEC50010-IAC-CW.git
synced 2024-11-10 01:35:49 +00:00
68 lines
2.9 KiB
Bash
Executable file
68 lines
2.9 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# arithmetic
|
|
./test/test_mips_cpu_harvard.sh rtl addu #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl addiu #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl subu #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl and #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl andi #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl or #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl ori #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl xor #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl xori #Pass
|
|
#./test/test_mips_cpu_harvard.sh rtl div
|
|
#./test/test_mips_cpu_harvard.sh rtl divu
|
|
#./test/test_mips_cpu_harvard.sh rtl mthi
|
|
#./test/test_mips_cpu_harvard.sh rtl mtlo
|
|
#./test/test_mips_cpu_harvard.sh rtl mult
|
|
#./test/test_mips_cpu_harvard.sh rtl multu
|
|
|
|
|
|
# branches
|
|
./test/test_mips_cpu_harvard.sh rtl beq #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl bgez #Pass
|
|
#./test/test_mips_cpu_harvard.sh rtl bgezal #Place return address thing how??
|
|
./test/test_mips_cpu_harvard.sh rtl bgtz #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl blez #Pass
|
|
#./test/test_mips_cpu_harvard.sh rtl bltz #Probably fails due to jump register thing?
|
|
./test/test_mips_cpu_harvard.sh rtl bltzal #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl bne #Pass
|
|
|
|
# jumps
|
|
#./test/test_mips_cpu_harvard.sh rtl j #Need new testcase
|
|
#./test/test_mips_cpu_harvard.sh rtl jalr #Again how to link?
|
|
#./test/test_mips_cpu_harvard.sh rtl jal #how to link?
|
|
./test/test_mips_cpu_harvard.sh rtl jr #Pass
|
|
|
|
# shift
|
|
./test/test_mips_cpu_harvard.sh rtl sll #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl srl #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl sra #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl srav #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl sllv #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl srlv #Pass
|
|
|
|
|
|
|
|
# load & store
|
|
./test/test_mips_cpu_harvard.sh rtl lw #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl lb #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl lbu #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl lh #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl lhu #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl lui #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl lwl #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl lwr #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl sw #Pass
|
|
#./test/test_mips_cpu_harvard.sh rtl sb #Once switched to bus
|
|
#./test/test_mips_cpu_harvard.sh rtl sh #Once switched to bus
|
|
|
|
|
|
# set on less than **Branch delay slots dont work on these...
|
|
./test/test_mips_cpu_harvard.sh rtl slti #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl sltiu #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl slt #Pass
|
|
./test/test_mips_cpu_harvard.sh rtl sltu #Pass
|
|
|
|
|