1
0
mirror of synced 2026-05-05 15:45:07 +00:00

Fixed typo

This commit is contained in:
Andrew Zonenberg
2016-04-22 19:08:19 -07:00
parent ab11f2aa70
commit 0cbe70eaa4

View File

@@ -235,7 +235,7 @@ module GP_SHREG(input nRST, input CLK, input IN, output OUTA, output OUTB);
reg[15:0] shreg = 0;
always @(posedge clk, negedge RSTN) begin
always @(posedge clk, negedge nRST) begin
if(!nRST)
shreg = 0;