summaryrefslogtreecommitdiff
path: root/rtl/gfx/gfx_beats.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-05-05 18:45:11 -0600
committerAlejandro Soto <alejandro@34project.org>2024-05-05 18:45:11 -0600
commit638b75fb4c8fdc3c9d3a208f6bd9976841bc0928 (patch)
tree3f26dad5958d6713d942b53b8c0bf62e003565a3 /rtl/gfx/gfx_beats.sv
parent1ffcdb62cd7e95ccd3f971d0b5cb2e617e1481b2 (diff)
rtl/if_common: initial commit, moved out of gfx
Diffstat (limited to 'rtl/gfx/gfx_beats.sv')
-rw-r--r--rtl/gfx/gfx_beats.sv29
1 files changed, 0 insertions, 29 deletions
diff --git a/rtl/gfx/gfx_beats.sv b/rtl/gfx/gfx_beats.sv
deleted file mode 100644
index fcbb091..0000000
--- a/rtl/gfx/gfx_beats.sv
+++ /dev/null
@@ -1,29 +0,0 @@
-interface gfx_beats
-#(int WIDTH = $bits(gfx::word));
-
- logic[WIDTH - 1:0] data;
- logic ready;
- logic valid;
-
- modport tx
- (
- input ready,
- output data,
- valid
- );
-
- modport rx
- (
- input data,
- valid,
- output ready
- );
-
- modport peek
- (
- input data,
- ready,
- valid
- );
-
-endinterface