summaryrefslogtreecommitdiff
path: root/hdl
diff options
context:
space:
mode:
authorJulian Blake Kongslie2021-03-24 08:35:07 -0700
committerJulian Blake Kongslie2021-03-24 08:50:57 -0700
commit5c1df6d27f5dac143efc9ce84689b863dbee45bd (patch)
tree9bb9c9bcab00e7d5a5d1b40467d8e5a810f0b706 /hdl
parentClean before building. (diff)
downloadtoycpu-5c1df6d27f5dac143efc9ce84689b863dbee45bd.tar.xz
Reorganize repo layout to make it a little easier to work within.
Diffstat (limited to '')
-rw-r--r--hdl/bin2bcd.sv (renamed from bin2bcd.sv)0
-rw-r--r--hdl/fibseq.sv (renamed from fibseq.sv)0
-rw-r--r--hdl/jtag_uart.sv (renamed from jtag_uart.sv)2
-rw-r--r--hdl/ntoa.sv (renamed from ntoa.sv)0
-rw-r--r--hdl/top.sv (renamed from top.sv)2
-rw-r--r--hdl/utils.svh (renamed from utils.svh)0
6 files changed, 2 insertions, 2 deletions
diff --git a/bin2bcd.sv b/hdl/bin2bcd.sv
index 9b1609b..9b1609b 100644
--- a/bin2bcd.sv
+++ b/hdl/bin2bcd.sv
diff --git a/fibseq.sv b/hdl/fibseq.sv
index 752c0b6..752c0b6 100644
--- a/fibseq.sv
+++ b/hdl/fibseq.sv
diff --git a/jtag_uart.sv b/hdl/jtag_uart.sv
index 5c4857d..eb0bc11 100644
--- a/jtag_uart.sv
+++ b/hdl/jtag_uart.sv
@@ -39,7 +39,7 @@ alt_jtag_atlantic
39`else 39`else
40 40
41bit [7:0] sim_rx_rom [0:(1<<16)-1]; 41bit [7:0] sim_rx_rom [0:(1<<16)-1];
42initial $readmemh("jtag_uart.hex", sim_rx_rom); 42initial $readmemh("mem/jtag_uart.hex", sim_rx_rom);
43 43
44bit [15:0] sim_rx_addr; 44bit [15:0] sim_rx_addr;
45 45
diff --git a/ntoa.sv b/hdl/ntoa.sv
index 6da1baf..6da1baf 100644
--- a/ntoa.sv
+++ b/hdl/ntoa.sv
diff --git a/top.sv b/hdl/top.sv
index 0244020..33c1fc5 100644
--- a/top.sv
+++ b/hdl/top.sv
@@ -15,7 +15,7 @@ bit reset;
15assign reset = !reset_n; 15assign reset = !reset_n;
16 16
17bit [7:0] rom [0:(1<<ROM_BITS)-1]; 17bit [7:0] rom [0:(1<<ROM_BITS)-1];
18initial $readmemh("rom.hex", rom); 18initial $readmemh("mem/rom.hex", rom);
19 19
20bit [ROM_BITS-1:0] addr; 20bit [ROM_BITS-1:0] addr;
21 21
diff --git a/utils.svh b/hdl/utils.svh
index ddba543..ddba543 100644
--- a/utils.svh
+++ b/hdl/utils.svh