From e697bfddba7c1bf46379b9fcb6f1d5f81e6ef4e1 Mon Sep 17 00:00:00 2001 From: Martijn Bastiaan Date: Wed, 4 Dec 2024 13:53:31 +0100 Subject: [PATCH] Fix typo: ouput -> output --- clash-vexriscv/src/ffi/impl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clash-vexriscv/src/ffi/impl.cpp b/clash-vexriscv/src/ffi/impl.cpp index 88eda62..ce10a32 100644 --- a/clash-vexriscv/src/ffi/impl.cpp +++ b/clash-vexriscv/src/ffi/impl.cpp @@ -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; @@ -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". @@ -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)