diff options
| author | Julian Blake Kongslie | 2021-03-24 09:24:19 -0700 |
|---|---|---|
| committer | Julian Blake Kongslie | 2021-03-24 09:24:19 -0700 |
| commit | 607ae017354c86296ba1371b6bb071973ce3cdb0 (patch) | |
| tree | 40cd40ac937e7a5519ac9c5d31c0eaed59b1beae | |
| parent | Reorganize repo layout to make it a little easier to work within. (diff) | |
| download | toycpu-607ae017354c86296ba1371b6bb071973ce3cdb0.tar.xz | |
Trivial cleanups.
Diffstat (limited to '')
| -rw-r--r-- | hdl/bin2bcd.sv | 2 | ||||
| -rw-r--r-- | hdl/fibseq.sv | 2 | ||||
| -rw-r--r-- | hdl/jtag_uart.sv | 2 | ||||
| -rw-r--r-- | hdl/ntoa.sv | 2 | ||||
| -rw-r--r-- | hdl/top.sv | 2 | ||||
| -rw-r--r-- | hdl/util.svh (renamed from hdl/utils.svh) | 0 | ||||
| -rw-r--r-- | tcl/init.tcl | 3 |
7 files changed, 7 insertions, 6 deletions
diff --git a/hdl/bin2bcd.sv b/hdl/bin2bcd.sv index 9b1609b..09f623f 100644 --- a/hdl/bin2bcd.sv +++ b/hdl/bin2bcd.sv | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | `include "utils.svh" | 1 | `include "util.svh" |
| 2 | 2 | ||
| 3 | module bin2bcd | 3 | module bin2bcd |
| 4 | #( BITS = 8 | 4 | #( BITS = 8 |
diff --git a/hdl/fibseq.sv b/hdl/fibseq.sv index 752c0b6..0021d2a 100644 --- a/hdl/fibseq.sv +++ b/hdl/fibseq.sv | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | `include "utils.svh" | 1 | `include "util.svh" |
| 2 | 2 | ||
| 3 | module fibseq | 3 | module fibseq |
| 4 | #( BITS = 8 | 4 | #( BITS = 8 |
diff --git a/hdl/jtag_uart.sv b/hdl/jtag_uart.sv index eb0bc11..be512bf 100644 --- a/hdl/jtag_uart.sv +++ b/hdl/jtag_uart.sv | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | `include "utils.svh" | 1 | `include "util.svh" |
| 2 | 2 | ||
| 3 | module jtag_uart | 3 | module jtag_uart |
| 4 | #( INSTANCE = 0 | 4 | #( INSTANCE = 0 |
diff --git a/hdl/ntoa.sv b/hdl/ntoa.sv index 6da1baf..9198637 100644 --- a/hdl/ntoa.sv +++ b/hdl/ntoa.sv | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | `include "utils.svh" | 1 | `include "util.svh" |
| 2 | 2 | ||
| 3 | module ntoa | 3 | module ntoa |
| 4 | #( BITS = 8 | 4 | #( BITS = 8 |
| @@ -1,4 +1,4 @@ | |||
| 1 | `include "utils.svh" | 1 | `include "util.svh" |
| 2 | 2 | ||
| 3 | module top | 3 | module top |
| 4 | #( FIB_BITS = 16 | 4 | #( FIB_BITS = 16 |
diff --git a/hdl/utils.svh b/hdl/util.svh index ddba543..ddba543 100644 --- a/hdl/utils.svh +++ b/hdl/util.svh | |||
diff --git a/tcl/init.tcl b/tcl/init.tcl index 7bf3a13..6621e6a 100644 --- a/tcl/init.tcl +++ b/tcl/init.tcl | |||
| @@ -27,12 +27,13 @@ proc add_dir {dir} { | |||
| 27 | add_files HEX hex $dir | 27 | add_files HEX hex $dir |
| 28 | add_files SDC sdc $dir | 28 | add_files SDC sdc $dir |
| 29 | add_files VERILOG sv $dir | 29 | add_files VERILOG sv $dir |
| 30 | add_files VERILOG svh $dir | ||
| 30 | 31 | ||
| 31 | foreach subdir [glob -nocomplain -directory $dir -type d *] { | 32 | foreach subdir [glob -nocomplain -directory $dir -type d *] { |
| 32 | add_dir $subdir | 33 | add_dir $subdir |
| 33 | } | 34 | } |
| 34 | } | 35 | } |
| 35 | 36 | ||
| 36 | add_dir "." | 37 | add_dir . |
| 37 | 38 | ||
| 38 | project_close | 39 | project_close |
