From 37e85b47814e2275e80cd2b949338292cb20551b Mon Sep 17 00:00:00 2001 From: Rodrigo Alejandro Melo Date: Tue, 28 Nov 2017 22:52:42 -0300 Subject: Added support to entity instantiations --- src/vhd2vl.l | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/vhd2vl.l') diff --git a/src/vhd2vl.l b/src/vhd2vl.l index d5c2ad1..71f87a9 100644 --- a/src/vhd2vl.l +++ b/src/vhd2vl.l @@ -66,6 +66,8 @@ void getbasedstring(unsigned skip); "\x0d\n" | \n { lineno++;} +"entity ".*\. {; /* to remove entity instantiation */} + "entity" { return ENTITY; } "is" { return IS; } "port" { return PORT; } -- cgit v1.2.1