This commit is contained in:
2026-06-12 07:53:32 +02:00
commit 59e71f3297
259 changed files with 29010 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
`ifndef MEMORY_IF_SV
`define MEMORY_IF_SV
interface memory_if(input clk, input rst);
logic [1 : 0] addr;
logic rw;
logic en;
logic [7 : 0] data_i;
logic [7 : 0] data_o;
endinterface : memory_if
`endif