1
0
mirror of https://github.com/olofk/serv.git synced 2026-01-31 13:31:54 +00:00

Syntax fixes

This commit is contained in:
Olof Kindgren
2021-01-18 22:47:28 +01:00
parent 5e4181d204
commit e4b773c17b
3 changed files with 1 additions and 3 deletions

View File

@@ -11,7 +11,6 @@ module serv_ctrl
input wire i_cnt12to31,
input wire i_cnt0,
input wire i_cnt2,
input wire i_cnt_done,
//Control
input wire i_jump,
input wire i_jal_or_jalr,

View File

@@ -48,6 +48,7 @@ module serv_state
wire cnt4;
reg stage_two_req;
reg init_done;
reg [4:2] o_cnt;
reg [3:0] o_cnt_r;
@@ -112,7 +113,6 @@ module serv_state
assign o_ibus_cyc = ibus_cyc & !i_rst;
assign o_init = two_stage_op & !o_pending_irq & !init_done;
reg init_done;
always @(posedge i_clk) begin
//ibus_cyc changes on three conditions.

View File

@@ -311,7 +311,6 @@ module serv_top
.i_cnt12to31 (cnt12to31),
.i_cnt0 (cnt0),
.i_cnt2 (cnt2),
.i_cnt_done (cnt_done),
//Control
.i_jump (jump),
.i_jal_or_jalr (jal_or_jalr),