Skip to content

Commit 447c14f

Browse files
committed
sim: Fix use of deprecated Yosys command
Signed-off-by: gatecat <gatecat@ds0.me>
1 parent a64852d commit 447c14f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chipflow_lib/platforms/sim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def build(self, e):
9494
else:
9595
# FIXME: use -defer (workaround for YosysHQ/yosys#4059)
9696
print(f"read_verilog {extra_filename}", file=yosys_file)
97-
print("read_ilang sim_soc.il", file=yosys_file)
97+
print("read_rtlil sim_soc.il", file=yosys_file)
9898
print("hierarchy -top sim_top", file=yosys_file)
9999
# FIXME: use the default -O6 (workaround for YosysHQ/yosys#4227)
100100
print("write_cxxrtl -O4 -header sim_soc.cc", file=yosys_file)

0 commit comments

Comments
 (0)