Update getting_started.md

I was working through using Manta for the first time, and the only bit that gave me a struggle so far was that I was expecting the `rst` signal to be active LOW.  I thought this might be worth calling out in the documentation here.

Awesome project btw, will definitely be using it more and try to contribute as I can! 😄
This commit is contained in:
Kenneth Wilke 2024-03-31 23:17:03 -05:00 committed by GitHub
parent 5060933c72
commit ccc75270a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -60,6 +60,8 @@ This Manta instance has an IO Core and a Logic Analyzer, each containing a numbe
Lastly, we Manta can automatically generate a copy-pasteable Verilog snippet to instantiate Manta in your design by running `manta inst [config_file]`. For example, the following snippet is generated for the configuration above:
> Note: The reset signal, `rst`, is an active HIGH signal.
```verilog
manta manta_inst (
.clk(clk),
@ -73,4 +75,4 @@ manta manta_inst (
.larry(larry),
.curly(curly),
.moe(moe));
```
```