We have moved! Fysh-Fyve/fysh
Current schematic is sourced from here
- Vivado
- Open Vivado
- Go to Tools > Run Tcl Script... and select
fysh-fyve.tcl
Launch Vivado in TCL mode.
# If project is not created yet
$ vivado -mode tcl
Vivado% source fysh-fyve.tcl
Vivado% open_project proj/fysh-fyve.xpr
# If the project has already been created
$ vivado -mode tcl proj/fysh-fyve.xpr
Generate the bitstream file.
Vivado% source write-bitstream.tcl
Plug in the board and program.
Vivado% source program-board.tcl
sudo apt install ghdl
If you want to format the code, you will need emacs
.
sudo apt install emacs
Then run:
make -j fmt
Simply run make test
to run all testbenches in test/
.
This is actually getting confusing 😭 especially without an LSP.
We don't need a good convention, we just need one.
NAME_i
- input portNAME_o
- output portNAME_t
- typeNAME_inst
- component instance
To also not confuse non-annotated identifiers with the annotated identifiers, we
should not end a variable name with _[^iot]
.