summaryrefslogtreecommitdiff
path: root/rtl/conspiracion.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-09-04 16:14:37 -0600
committerAlejandro Soto <alejandro@34project.org>2022-09-04 16:14:37 -0600
commitfa3610a57e89dd667075cd8922a07a69ec433fa0 (patch)
treebaec1961a9b1dcfbfcd83cba179d2bb50f22c233 /rtl/conspiracion.sv
parent9f058168d27de269df7c40f43a9070478971c4be (diff)
Add Avalon bus master
Diffstat (limited to '')
-rw-r--r--rtl/conspiracion.sv17
1 files changed, 16 insertions, 1 deletions
diff --git a/rtl/conspiracion.sv b/rtl/conspiracion.sv
index 0b652e7..96c6fb8 100644
--- a/rtl/conspiracion.sv
+++ b/rtl/conspiracion.sv
@@ -20,6 +20,21 @@ module conspiracion
input wire reset_reset_n // reset.reset_n
);
- platform plat(.*);
+ logic[29:0] addr;
+ logic[31:0] data_rd, data_rw;
+ logic ready, write, start;
+
+ platform plat
+ (
+ .master_0_core_addr(addr),
+ .master_0_core_data_rd(data_rd),
+ .master_0_core_data_rw(data_rw),
+ .master_0_core_ready(ready),
+ .master_0_core_write(write),
+ .master_0_core_start(start),
+ .*
+ );
+
+ initial start <= 0;
endmodule