aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1300/icache.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue1300/icache.vhdl')
-rw-r--r--testsuite/gna/issue1300/icache.vhdl16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/gna/issue1300/icache.vhdl b/testsuite/gna/issue1300/icache.vhdl
new file mode 100644
index 000000000..fed20e4a5
--- /dev/null
+++ b/testsuite/gna/issue1300/icache.vhdl
@@ -0,0 +1,16 @@
+library work;
+use work.wishbone_types.all;
+
+entity icache is
+ port (
+ clk : in bit;
+ rst : in bit;
+
+-- wishbone_in : in wb_cpu_in_t
+ wishbone_in : in wishbone_slave_out
+ );
+end entity icache;
+
+architecture rtl of icache is
+begin
+end;