1
0
mirror of https://github.com/corundum/corundum.git synced 2025-01-16 08:12:53 +08:00

Fix state register width

This commit is contained in:
Alex Forencich 2019-08-12 15:12:21 -07:00
parent e9949f57a9
commit e9c1c5a49d

View File

@ -121,7 +121,7 @@ localparam [3:0]
STATE_IFG = 4'd7,
STATE_WAIT_END = 4'd8;
reg [2:0] state_reg = STATE_IDLE, state_next;
reg [3:0] state_reg = STATE_IDLE, state_next;
// datapath control signals
reg reset_crc;