mirror of https://github.com/zachjs/sv2v.git
bump iverilog and use explicit named port connections in tests
This commit is contained in:
parent
0f8224023b
commit
d0e3b794bc
|
|
@ -41,7 +41,7 @@ jobs:
|
|||
- macOS-11
|
||||
needs: build
|
||||
env:
|
||||
IVERILOG_REF: 6307057e8db8419b422361973aca0b435eb2bde1
|
||||
IVERILOG_REF: 872ccd32c45cde18855f76d2a87469f7a23612ba
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Install Dependencies (macOS)
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ module top;
|
|||
forever #1 en = ~en;
|
||||
end
|
||||
|
||||
test m(.a, .b, .en);
|
||||
test m(a, b, en);
|
||||
|
||||
initial begin
|
||||
$monitor($time, a, b, en);
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ module top;
|
|||
genvar j;
|
||||
for (j = 0; j < N - 1; j = j + 1) begin : clients
|
||||
ClientTick #(j, j + 1) client(
|
||||
.clock,
|
||||
.clock(clock),
|
||||
.client_req(intf.req[j + 1])
|
||||
);
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
module top;
|
||||
reg [1:0] sel;
|
||||
wire [7:0] out;
|
||||
example e(.sel, .out);
|
||||
example e(sel, out);
|
||||
integer i = 0;
|
||||
initial
|
||||
for (i = 0; i < 10; i = i + 1)
|
||||
|
|
|
|||
Loading…
Reference in New Issue