Skip to content

Commit

Permalink
timescale and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stevej committed Oct 24, 2024
1 parent 520b8cb commit 934195b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/jtag.v
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
`define _JTAG_

`default_nettype none
`timescale 1us / 100 ns

`include "byte_transmitter.v"

Expand Down
3 changes: 3 additions & 0 deletions src/minipit.v
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
`ifndef _MINIPIT_
`define _MINIPIT_

`default_nettype none
`timescale 1us / 100 ns

module minipit (
input clk,
input rst_n,
Expand Down
2 changes: 1 addition & 1 deletion test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async def test_rms_five_high_for_reset(dut):
dut.ui_in.value = 0b0000_0111
await ClockCycles(dut.clk, 1)
dut.ui_in.value = 0b0000_0110
# At this point, the design is in reset but
# At this point, the design is in reset but
# the interrupt is also firing on all the other pins.
assert dut.uo_out.value == 0xFE

Expand Down

0 comments on commit 934195b

Please sign in to comment.