Skip to content

Commit

Permalink
Fix typo: ouput -> output
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnbastiaan committed Dec 4, 2024
1 parent e7e8e29 commit e697bfd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clash-vexriscv/src/ffi/impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void set_comb_inputs(VVexRiscv *top, const COMB_INPUT *input)
}

// Set all outputs
void set_ouputs(VVexRiscv *top, OUTPUT *output)
void set_outputs(VVexRiscv *top, OUTPUT *output)
{
output->iBusWishbone_CYC = top->iBusWishbone_CYC;
output->iBusWishbone_STB = top->iBusWishbone_STB;
Expand Down Expand Up @@ -129,7 +129,7 @@ void vexr_init_stage1(VerilatedVcdC *vcd, VVexRiscv *top, const NON_COMB_INPUT *
if (vcd != NULL) {
vcd->dump(contextp->time());
}
set_ouputs(top, output);
set_outputs(top, output);

// Advance time by 50 nanoseconds. This is an arbitrary value. Ideally, we would
// do something similar to Clash's template tag "~LONGESTPERIOD".
Expand Down Expand Up @@ -166,7 +166,7 @@ void vexr_step_rising_edge(VerilatedVcdC *vcd, VVexRiscv *top, uint64_t time_add
}

// Set all outputs
set_ouputs(top, output);
set_outputs(top, output);
}

void vexr_step_falling_edge(VerilatedVcdC *vcd, VVexRiscv *top, uint64_t time_add, const COMB_INPUT *input)
Expand Down

0 comments on commit e697bfd

Please sign in to comment.