From 4ec5cdcd77aa1b6fc384197e1208061d62f16ba2 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Thu, 17 Jun 2021 13:11:32 +0200 Subject: Updates to the dom namespace in pyGHDL. --- testsuite/pyunit/SimpleEntity.vhdl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testsuite/pyunit/SimpleEntity.vhdl') diff --git a/testsuite/pyunit/SimpleEntity.vhdl b/testsuite/pyunit/SimpleEntity.vhdl index a61c1cf93..98d0afbb7 100644 --- a/testsuite/pyunit/SimpleEntity.vhdl +++ b/testsuite/pyunit/SimpleEntity.vhdl @@ -2,7 +2,7 @@ library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; -entity e1 is +entity entity_1 is generic ( BITS : positive := 8 ); @@ -11,9 +11,9 @@ entity e1 is Reset: in std_logic; Q: out std_logic_vector(BITS - 1 downto 0) ); -end entity e1; +end entity entity_1; -architecture behav of e1 is +architecture behav of entity_1 is begin process(Clock) begin -- cgit v1.2.3