Update code with new edge detector.

This commit is contained in:
2018-06-07 21:26:46 -07:00
parent 672eae920a
commit 5c24d2e464
3 changed files with 18 additions and 10 deletions

View File

@@ -25,7 +25,8 @@ module cpu_controller(input logic clk, reset,
edge_detector inst_ready_detector(
.in(inst_ready),
.clk(clk),
.out(inst_ready_edge));
.reset(reset),
.pos_edge(inst_ready_edge));
logic prog_forward_clk;