From 098ba2e2cdc92dbb9ec12e61a6df65b340eb694d Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Sat, 17 Jan 2026 23:27:33 -0800 Subject: [PATCH] Add skeletons --- sim/sim.yaml | 0 src/sub/downstream_path/downstream_path.sv | 17 +++++++++++++++++ src/sub/upstream_path/upstream_path.sv | 17 +++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 sim/sim.yaml create mode 100644 src/sub/downstream_path/downstream_path.sv create mode 100644 src/sub/upstream_path/upstream_path.sv diff --git a/sim/sim.yaml b/sim/sim.yaml new file mode 100644 index 0000000..e69de29 diff --git a/src/sub/downstream_path/downstream_path.sv b/src/sub/downstream_path/downstream_path.sv new file mode 100644 index 0000000..5f19835 --- /dev/null +++ b/src/sub/downstream_path/downstream_path.sv @@ -0,0 +1,17 @@ +module downstream_path ( + input clk, + input rst, + + taxi_axis_if.snk s_axis_data, + taxi_axis_if.src m_axis_data, + + taxi_axi_if.rd_mst m_axi_rd, + taxi_axi_if.wr_mst m_axi_wr, + + taxi_apb_if.slv s_apb_cfg, + + output logic o_irq_m2s, + output logic o_irq_s2m +); + +endmodule \ No newline at end of file diff --git a/src/sub/upstream_path/upstream_path.sv b/src/sub/upstream_path/upstream_path.sv new file mode 100644 index 0000000..82dc141 --- /dev/null +++ b/src/sub/upstream_path/upstream_path.sv @@ -0,0 +1,17 @@ +module upstream_path ( + input clk, + input rst, + + taxi_axis_if.snk s_axis_data, + taxi_axis_if.src m_axis_data, + + taxi_axi_if.rd_mst m_axi_rd, + taxi_axi_if.wr_mst m_axi_wr, + + taxi_apb_if.slv s_apb_cfg, + + output logic o_irq_m2s, + output logic o_irq_s2m +); + +endmodule \ No newline at end of file