Skip to content

Commit

Permalink
Fix a lot of typos (#2143)
Browse files Browse the repository at this point in the history
Co-authored-by: Rachit Nigam <[email protected]>
  • Loading branch information
ethanuppal and rachitnigam authored Aug 5, 2024
1 parent 807f554 commit 2a4184b
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 2a4184b

Please sign in to comment.