diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-11-02 23:48:21 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-11-02 23:48:21 -0600 |
| commit | abe3a7da04a3703bd504b5ed2e13ecc79dff4bd0 (patch) | |
| tree | 09d30c745a9e8c49e7ee4627176a6fdc8264745f /rtl/top | |
| parent | 4ef4190e67534168e1e64b810a09c0cd1338e2a9 (diff) | |
Add bus master forward signals: irq, cpu_clk
Diffstat (limited to 'rtl/top')
| -rw-r--r-- | rtl/top/conspiracion.sv | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rtl/top/conspiracion.sv b/rtl/top/conspiracion.sv index 940e46a..41b614f 100644 --- a/rtl/top/conspiracion.sv +++ b/rtl/top/conspiracion.sv @@ -35,7 +35,7 @@ module conspiracion logic[29:0] addr; logic[31:0] data_rd, data_wr; - logic clk_core, ready, write, start; + logic cpu_clk, ready, write, start, irq; arm810 core ( @@ -53,12 +53,14 @@ module conspiracion platform plat ( + .master_0_core_cpu_clk(cpu_clk), .master_0_core_addr(addr), .master_0_core_data_rd(data_rd), .master_0_core_data_wr(data_wr), .master_0_core_ready(ready), .master_0_core_write(write), .master_0_core_start(start), + .master_0_core_irq(irq), .pll_0_outclk3_clk(), .pio_0_external_connection_export(), .* |
