mirror of
https://github.com/lowRISC/ibex.git
synced 2025-06-28 09:17:17 -04:00
[formal] Read Verilog files in Yosys
All files read at this point should be Verilog and not SystemVerilog. Do not use the SystemVerilog specifier for reading files.
This commit is contained in:
parent
e1eaa1c804
commit
7032df0d8b
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ $(GEN_V): $(OUTDIR)%.v: $(SRC_DIR)%.sv $(PKGS) | $(OUTDIR)
|
|||
# Combine multiple Verilog sources into one Ibex Verilog file
|
||||
# Disable "M" extension
|
||||
$(IBEX_OUT): $(GEN_V) $(PRIM_CLOCK)
|
||||
yosys -p "read_verilog -sv $(PRIM_CLOCK) $(GEN_V)" \
|
||||
yosys -p "read_verilog $(PRIM_CLOCK) $(GEN_V)" \
|
||||
-p "chparam -set RV32M 0 ibex_top" \
|
||||
-p "chparam -set WritebackStage $(IBEX_ENABLE_WB) ibex_top" \
|
||||
-p "synth -top ibex_top" \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue