Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a lot of typos #2143

Merged
merged 2 commits into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/running-calyx/interfacing.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ In order to be able to actually write to our register, we need to drive our `res

```python
# Required for all cocotb testbenches. Included for completeness.
cocotb.start_soon(Clock(module.clk, 2, units="ns").start())
cocotb.start_soon(Clock(main.clk, 2, units="ns").start())

# Reset Calyx-generated control registers
main.reset.value = 1
await ClockCycles(main.clk, 5) #wait a bit
module.reset.value = 0
main.reset.value = 0

# Start execution of control sequence
module.go.value = 1
main.go.value = 1

#At this point our Calyx program is done
await RisingEdge(main.done)
Expand Down
Loading