Skip to content

Commit 91c9bab

Browse files
committed
Better messaging when running simulation
1 parent 6ce21cb commit 91c9bab

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

chipflow/platform/sim_step.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,13 @@ def run(self, *args):
136136
from ..cli import run
137137
run(["software"])
138138
self.build(args)
139+
140+
print("Running simulation...")
141+
print("-----------------------------------------")
142+
print("")
139143
result = subprocess.run([self.sim_dir / "sim_soc"], cwd=self.sim_dir)
144+
print("")
145+
print("-----------------------------------------")
140146

141147
if result.returncode != 0:
142148
raise ChipFlowError("Simulation failed")

0 commit comments

Comments
 (0)