You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -44,21 +44,20 @@ First choose a design to test. Here we will use the `minimal` design.
44
44
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.
45
45
46
46
```
47
-
pdm run chipflow pin lock
47
+
pdm chipflow pin lock
48
48
```
49
49
50
50
We can now simulate and test the design by running:
51
51
```
52
-
make sim-check
52
+
pdm sim-check
53
53
```
54
54
55
55
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!)
56
56
57
57
```
58
-
pdm run chipflow sim
59
58
-- build_sim_cxxrtl
60
59
-- build_sim
61
-
pdm run chipflow software
60
+
pdm chipflow software
62
61
-- gather_depencencies
63
62
-- build_software_elf
64
63
-- build_software
@@ -74,7 +73,7 @@ Event logs are identical
74
73
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:
75
74
76
75
```
77
-
pdm run chipflow silicon submit
76
+
pdm submit
78
77
79
78
```
80
79
This should return something like:
@@ -88,7 +87,7 @@ Your design will now start building: pictures and logs of the build are availabl
88
87
89
88
If you would like to get the build logs streamed to your command-line, you can instead call:
0 commit comments