summaryrefslogtreecommitdiff
path: root/rtl/top/test_fifo.sv
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--rtl/top/test_fifo.sv20
1 files changed, 20 insertions, 0 deletions
diff --git a/rtl/top/test_fifo.sv b/rtl/top/test_fifo.sv
new file mode 100644
index 0000000..2641c61
--- /dev/null
+++ b/rtl/top/test_fifo.sv
@@ -0,0 +1,20 @@
+module test_fifo
+(
+ input logic clk,
+ rst_n,
+
+ input logic[7:0] in,
+ input logic in_valid,
+ output logic in_ready,
+
+ input logic out_ready,
+ output logic out_valid,
+ output logic[7:0] out
+);
+
+ gfx_fifo #(.WIDTH($bits(in)), .DEPTH(8)) dut
+ (
+ .*
+ );
+
+endmodule