Skip to content

Commit 934195b

Browse files
committed
timescale and comments
1 parent 520b8cb commit 934195b

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

src/jtag.v

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
`define _JTAG_
33

44
`default_nettype none
5+
`timescale 1us / 100 ns
56

67
`include "byte_transmitter.v"
78

src/minipit.v

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
`ifndef _MINIPIT_
22
`define _MINIPIT_
33

4+
`default_nettype none
5+
`timescale 1us / 100 ns
6+
47
module minipit (
58
input clk,
69
input rst_n,

test/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async def test_rms_five_high_for_reset(dut):
5454
dut.ui_in.value = 0b0000_0111
5555
await ClockCycles(dut.clk, 1)
5656
dut.ui_in.value = 0b0000_0110
57-
# At this point, the design is in reset but
57+
# At this point, the design is in reset but
5858
# the interrupt is also firing on all the other pins.
5959
assert dut.uo_out.value == 0xFE
6060

0 commit comments

Comments
 (0)