README: update instructions about lichee tang and anlogic use
This commit is contained in:
parent
e0d763c4b5
commit
5a214b4c79
25
README.md
25
README.md
|
|
@ -361,3 +361,28 @@ __file load__:
|
|||
```bash
|
||||
openFPGALoader -f -b littleBee impl/pnr/*.fs
|
||||
```
|
||||
|
||||
### Sipeed Lichee Tang
|
||||
|
||||
Due to a lack of information about FPGA configuration using JTAG, it's not
|
||||
possible to use directly the *.bit* file.
|
||||
The current way is to convert *.bit* to *.svf* by using a tool provided by
|
||||
[prjtang project](https://github.com/mmicko/prjtang)
|
||||
|
||||
```bash
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ../
|
||||
make
|
||||
```
|
||||
|
||||
Now a file called *tangbit* is present in current directory and has to be used as
|
||||
follow:
|
||||
```bash
|
||||
tangbit --input /somewhere.bit --svf bitstream.svf
|
||||
```
|
||||
|
||||
__file load__:
|
||||
```bash
|
||||
openFPGALoader -b licheeTang /somewhere/*.svf
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in New Issue