Skip to content

Commit

Permalink
[revert] re-enable C in Vunit testbench
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Nov 22, 2023
1 parent 4f5e83a commit d48cd5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sim/neorv32_tb.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ begin
if ci_mode then
-- No need to send the full expectation in one big chunk
check_uart(net, uart1_rx_handle, nul & nul);
check_uart(net, uart1_rx_handle, "0/58" & cr & lf);
check_uart(net, uart1_rx_handle, "0/57" & cr & lf);
end if;

-- Wait until all expected data has been received
Expand Down Expand Up @@ -227,7 +227,7 @@ begin
-- RISC-V CPU Extensions --
CPU_EXTENSION_RISCV_A => true, -- implement atomic memory operations extension?
CPU_EXTENSION_RISCV_B => true, -- implement bit-manipulation extension?
CPU_EXTENSION_RISCV_C => false, -- implement compressed extension?
CPU_EXTENSION_RISCV_C => true, -- implement compressed extension?
CPU_EXTENSION_RISCV_E => false, -- implement embedded RF extension?
CPU_EXTENSION_RISCV_M => true, -- implement mul/div extension?
CPU_EXTENSION_RISCV_U => true, -- implement user mode extension?
Expand Down

0 comments on commit d48cd5e

Please sign in to comment.