From: Luke Kenneth Casson Leighton Date: Sun, 18 Apr 2021 22:37:50 +0000 (+0000) Subject: try renaming spblock without the underscore X-Git-Tag: LS180_RC3~101 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c85c2ab298374c59c85ccf2c4d2896eac2865c36;p=soclayout.git try renaming spblock without the underscore --- diff --git a/experiments9/Makefile b/experiments9/Makefile index b4eb887..9bf47a8 100755 --- a/experiments9/Makefile +++ b/experiments9/Makefile @@ -3,7 +3,7 @@ PHYSICAL_SYNTHESIS = Coriolis DESIGN_KIT = cmos45 YOSYS_FLATTEN = No - YOSYS_BLACKBOXES = pll spblock_512w64b8w + YOSYS_BLACKBOXES = pll spblock512w64b8w # YOSYS_SET_TOP = Yes CHIP = chip CORE = ls180 diff --git a/experiments9/non_generated/full_core_4_4ksram_ls180.v b/experiments9/non_generated/full_core_4_4ksram_ls180.v index 17b5558..2eef8b9 100644 --- a/experiments9/non_generated/full_core_4_4ksram_ls180.v +++ b/experiments9/non_generated/full_core_4_4ksram_ls180.v @@ -1,3 +1,3 @@ `include "litex_ls180.v" -`include "spblock_512w64b8w.v" +`include "spblock512w64b8w.v" `include "libresoc.v" diff --git a/experiments9/non_generated/spblock512w64b8w.v b/experiments9/non_generated/spblock512w64b8w.v new file mode 100644 index 0000000..a111127 --- /dev/null +++ b/experiments9/non_generated/spblock512w64b8w.v @@ -0,0 +1,9 @@ +(* blackbox = 1 *) +module spblock512w64b8w(a, d, q, we, clk); + input [8:0] a; + input [63:0] d; + output [63:0] q; + input [7:0] we; + input clk; +endmodule // SPBlock_512W64B8W + diff --git a/experiments9/non_generated/spblock_512w64b8w.v b/experiments9/non_generated/spblock_512w64b8w.v deleted file mode 100644 index 44db03c..0000000 --- a/experiments9/non_generated/spblock_512w64b8w.v +++ /dev/null @@ -1,9 +0,0 @@ -(* blackbox = 1 *) -module spblock_512w64b8w(a, d, q, we, clk); - input [8:0] a; - input [63:0] d; - output [63:0] q; - input [7:0] we; - input clk; -endmodule // SPBlock_512W64B8W -