From 405c0287c80c34b0e9dfb9d9326b86d12433b4c4 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Thu, 2 May 2024 21:03:05 -0600 Subject: platform/wavelet3d: implement shader cores This commit contains over a month of intermittent work (I don't have enough free time to do this the right way) --- platform/wavelet3d/gfx_shake.sv | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 platform/wavelet3d/gfx_shake.sv (limited to 'platform/wavelet3d/gfx_shake.sv') diff --git a/platform/wavelet3d/gfx_shake.sv b/platform/wavelet3d/gfx_shake.sv new file mode 100644 index 0000000..baae0c3 --- /dev/null +++ b/platform/wavelet3d/gfx_shake.sv @@ -0,0 +1,24 @@ +interface gfx_shake; + + logic ready; + logic valid; + + modport tx + ( + input ready, + output valid + ); + + modport rx + ( + input valid, + output ready + ); + + modport peek + ( + input ready, + valid + ); + +endinterface -- cgit v1.2.3