3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-28 22:18:59 +00:00

Cleaned tests

This commit is contained in:
Miodrag Milanovic 2019-10-04 12:42:06 +02:00
parent f94dc2c072
commit 286a272872
5 changed files with 4 additions and 49 deletions

View file

@ -52,22 +52,4 @@
endcase
end
endmodule
module top (
input clk,
input rst,
input a,
input b,
output g0,
output g1
);
fsm u_fsm ( .clock(clk),
.reset(rst),
.req_0(a),
.req_1(b),
.gnt_0(g0),
.gnt_1(g1));
endmodule