Fixed FPGA build error

This commit is contained in:
Arup De 2019-12-06 09:50:38 -08:00
parent c89f6b7511
commit aa2bc2269d
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ module dmi_jtag_to_core_sync (
// synchronizers
always @ ( posedge clk or negedge rst_n) begin
if(!rst_n) begin
rden <= '0;
wren <= '0;
rden <= 3'b0;
wren <= 3'b0;
end
else begin
rden <= {rden[1:0], rd_en};