WIP: implement more instructions in unit::alu_branch #14

Draft
programmerjake wants to merge 9 commits from programmerjake/cpu:more-alu-branch into master
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 5558763718 - Show all commits

View file

@ -4609,7 +4609,7 @@ fn test_rename_execute_retire_save_restore_gprs() {
#[hdl]
#[test]
fn test_rename_execute_retire_real_alu_branch() {
fn test_rename_execute_retire_save_restore_gprs_real() {
let _n = SourceLocation::normalize_files_for_tests();
let mut config = CpuConfig::new(
vec![
@ -4628,7 +4628,7 @@ fn test_rename_execute_retire_real_alu_branch() {
let mut sim = Simulation::new(m);
let _checked_vcd_output = checked_vcd_output!(
&mut sim,
"tests/expected/rename_execute_retire_real_alu_branch.vcd",
"tests/expected/rename_execute_retire_save_restore_gprs_real.vcd",
);
sim.write_clock(sim.io().cd.clk, false);
sim.write_reset(sim.io().cd.rst, true);