diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-05-04 14:19:48 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-05-04 14:19:48 -0600 |
| commit | a7d92072c0bdc3a3e1c99de64f353e932846bc2a (patch) | |
| tree | cc9af86b65820c3a30cf1d0b0c97e8bfe8fc9b44 /rtl/axi_timer/axi_bus.sv | |
| parent | 90cd29d85865bb5a4dbdf791616818b151881883 (diff) | |
rtl/pkt_switch: replace axi_timer example with pkt_switch
Diffstat (limited to 'rtl/axi_timer/axi_bus.sv')
| -rw-r--r-- | rtl/axi_timer/axi_bus.sv | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/rtl/axi_timer/axi_bus.sv b/rtl/axi_timer/axi_bus.sv deleted file mode 100644 index f1460ca..0000000 --- a/rtl/axi_timer/axi_bus.sv +++ /dev/null @@ -1,28 +0,0 @@ -//AXI interface bus -interface axi_bus #( - parameter int unsigned AXI_ADDR_WIDTH = 32, - parameter int unsigned AXI_DATA_WIDTH = 32 - ); - - logic [AXI_ADDR_WIDTH-1:0] ADDR; - logic AVALID; - logic AREADY; - logic AWRITE; - logic WVALID; - logic WREADY; - logic [AXI_DATA_WIDTH-1:0] WDATA; - logic RVALID; - logic RREADY; - logic [AXI_DATA_WIDTH-1:0] RDATA; - - modport Master( - input AREADY, WREADY, RVALID, RDATA, - output ADDR, AVALID, AWRITE, WVALID, WDATA, RREADY - ); - - modport Slave( - input ADDR, AVALID, AWRITE, WVALID, WDATA, RREADY, - output AREADY, WREADY, RVALID, RDATA - ); - -endinterface |
