cores/microwatt: rename CLI tool (microwatt → microwatt_cli).

The CLI tool uses its own __main__.py; as a convention, we will suffix
it with '_cli' in order to avoid name collisions with Python packages
(e.g. an Amaranth core may have its package named after itself).
main
Jean-François Nguyen 2 years ago
parent 713428146a
commit 40af98ad32

@ -4,7 +4,7 @@
- [ghdl-yosys-plugin](https://github.com/ghdl/ghdl-yosys-plugin)


POWER-FV support for Microwatt can be previewed on the following fork:
A version of Microwatt with POWER-FV support is available here:

```
git clone git@git.openpower.foundation:jfng/microwatt -b powerfv src
@ -17,7 +17,7 @@ git clone git@git.openpower.foundation:jfng/microwatt -b powerfv src
```
poetry shell

python -m microwatt -h
python -m microwatt_cli -h

exit
```
@ -25,11 +25,11 @@ exit
### Run commands from a file

```
python -m microwatt -c checks.pfv
python -m microwatt_cli -c checks.pfv
```

### Run commands interactively

```
python -m microwatt -i
python -m microwatt_cli -i
```

Loading…
Cancel
Save