Skip to content

Commit b91cc96

Browse files
committed
Update readme
1 parent cc5e3f4 commit b91cc96

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,20 @@ First choose a design to test. Here we will use the `minimal` design.
4444
Change into the `minimal` directory in `chipflow-examples` to use this design. Now we need to 'lock' our pins - the ChipFlow tooling will then automatically allocate inputs and outputs from your design to pins on the chip.
4545

4646
```
47-
pdm run chipflow pin lock
47+
pdm chipflow pin lock
4848
```
4949

5050
We can now simulate and test the design by running:
5151
```
52-
make sim-check
52+
pdm sim-check
5353
```
5454

5555
You should see the simulation model being built and run - and a small test firmware running on the simulated System-on-a-Chip (aided by our local friendly cat!)
5656

5757
```
58-
pdm run chipflow sim
5958
-- build_sim_cxxrtl
6059
-- build_sim
61-
pdm run chipflow software
60+
pdm chipflow software
6261
-- gather_depencencies
6362
-- build_software_elf
6463
-- build_software
@@ -74,7 +73,7 @@ Event logs are identical
7473
Now you are ready to try building this design into a chip! To submit your design to ChipFlow Platform where it will be built into GDS, run:
7574

7675
```
77-
pdm run chipflow silicon submit
76+
pdm submit
7877
7978
```
8079
This should return something like:
@@ -88,7 +87,7 @@ Your design will now start building: pictures and logs of the build are availabl
8887

8988
If you would like to get the build logs streamed to your command-line, you can instead call:
9089
```
91-
pdm run chipflow silicon submit --wait
90+
pdm submit --wait
9291
```
9392

9493

0 commit comments

Comments
 (0)