diff options
Diffstat (limited to 'testsuite/pyunit/libghdl/array.vhdl')
-rw-r--r-- | testsuite/pyunit/libghdl/array.vhdl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/pyunit/libghdl/array.vhdl b/testsuite/pyunit/libghdl/array.vhdl new file mode 100644 index 000000000..659f88b4d --- /dev/null +++ b/testsuite/pyunit/libghdl/array.vhdl @@ -0,0 +1,7 @@ +package p is + + constant c : natural := 1; + + -- Comment for :vec: + type vec is array(natural) of bit_vector(0 to 1); +end p; |