1
0
mirror of https://github.com/olofk/serv.git synced 2026-05-05 15:53:34 +00:00

Remove unused rs_en signal

This commit is contained in:
Olof Kindgren
2019-09-16 10:45:42 +02:00
parent 6518b5f30f
commit 920ad92bc7
2 changed files with 3 additions and 5 deletions

View File

@@ -22,7 +22,6 @@ module serv_state
output reg o_ctrl_jump,
output wire o_ctrl_trap,
input wire i_ctrl_misalign,
output wire o_rf_rs_en,
output wire o_alu_shamt_en,
input wire i_alu_sh_done,
output wire o_dbus_cyc,
@@ -82,8 +81,6 @@ module serv_state
reg pending_irq;
assign o_rf_rs_en = two_stage_op ? (state == INIT) : o_ctrl_pc_en;
assign o_dbus_cyc = (state == IDLE) & stage_two_pending & i_mem_op & !mem_misalign;
always @(posedge i_clk) begin