From 379f53d9eb86e61653109e36cacbbb1aad3e0d2b Mon Sep 17 00:00:00 2001 From: guibilar Date: Sun, 8 May 2016 01:51:42 -0300 Subject: [PATCH] Update fallthrough_small_fifo_v2.v Module with the wrong name --- lib/verilog/core/utils/src/fallthrough_small_fifo_v2.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/verilog/core/utils/src/fallthrough_small_fifo_v2.v b/lib/verilog/core/utils/src/fallthrough_small_fifo_v2.v index 6812e911..19aace32 100644 --- a/lib/verilog/core/utils/src/fallthrough_small_fifo_v2.v +++ b/lib/verilog/core/utils/src/fallthrough_small_fifo_v2.v @@ -12,7 +12,7 @@ /////////////////////////////////////////////////////////////////////////////// `timescale 1ns/1ps - module fallthrough_small_fifo + module fallthrough_small_fifo_v2 #(parameter WIDTH = 72, parameter MAX_DEPTH_BITS = 3, parameter PROG_FULL_THRESHOLD = 2**MAX_DEPTH_BITS - 1)