Remove files that are now copied from other locations.
authorJean-Paul Chaput <Jean-Paul.Chaput@lip6.fr>
Wed, 9 Jun 2021 09:02:51 +0000 (11:02 +0200)
committerJean-Paul Chaput <Jean-Paul.Chaput@lip6.fr>
Wed, 9 Jun 2021 09:02:51 +0000 (11:02 +0200)
experiments9/tsmc_c018/coriolis2/pinparse.py [deleted symlink]
experiments9/tsmc_c018/spblock_512w64b8w.v [deleted file]
experiments9/tsmc_c018/spblock_512w64b8w.vbe [deleted file]

diff --git a/experiments9/tsmc_c018/coriolis2/pinparse.py b/experiments9/tsmc_c018/coriolis2/pinparse.py
deleted file mode 120000 (symlink)
index a704604..0000000
+++ /dev/null
@@ -1 +0,0 @@
-../pinmux/src/parse.py
\ No newline at end of file
diff --git a/experiments9/tsmc_c018/spblock_512w64b8w.v b/experiments9/tsmc_c018/spblock_512w64b8w.v
deleted file mode 100644 (file)
index 8b9e144..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-(* blackbox = 1 *)
-module spblock_512w64b8w(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/tsmc_c018/spblock_512w64b8w.vbe b/experiments9/tsmc_c018/spblock_512w64b8w.vbe
deleted file mode 100644 (file)
index 553f462..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-
--- Phony VHDL interface for SRAM block.
-
-entity spblock_512w64b8w is
-   port ( clk     : in  bit
-        ; we      : in  bit_vector( 7 downto 0)
-        ; a       : in  bit_vector( 8 downto 0)
-        ; d       : in  bit_vector(63 downto 0)
-        ; q       : out bit_vector(63 downto 0)
-        ; vdd     : in  bit
-        ; vss     : in  bit
-        );
-end spblock_512w64b8w;
-
-architecture behavioral of spblock_512w64b8w is
-
-begin
-
-end behavioral;