File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 11#-------------------------------------------------------------------------------
22# ast.py
33#
4- # Verilog HDL AST classes with Pyverilog
4+ # Verilog HDL AST Node Definitions
55#
66# Copyright (C) 2013, Shinya Takamaeda-Yamazaki
7- # edited by ryosuke fukatani
87# License: Apache 2.0
8+ # Contributor: ryosuke fukatani
99#-------------------------------------------------------------------------------
1010from __future__ import absolute_import
1111from __future__ import print_function
@@ -770,4 +770,3 @@ def children(self):
770770 nodelist = []
771771 if self .statement : nodelist .append (self .statement )
772772 return tuple (nodelist )
773-
Original file line number Diff line number Diff line change 44# Verilog Lexical Analyzer
55#
66# Copyright (C) 2013, Shinya Takamaeda-Yamazaki
7- # Edited by ryosuke fukatani
87# License: Apache 2.0
8+ # Contributor: ryosuke fukatani
99#-------------------------------------------------------------------------------
1010from __future__ import absolute_import
1111from __future__ import print_function
@@ -321,8 +321,8 @@ def showVersion():
321321 showVersion ()
322322
323323 text = preprocess (filelist ,
324- preprocess_include = options .include ,
325- preprocess_define = options .define )
324+ include = options .include ,
325+ define = options .define )
326326
327327 dump = dump_tokens (text )
328328
Original file line number Diff line number Diff line change 11#-------------------------------------------------------------------------------
22# parser.py
33#
4- # Parser
4+ # Verilog Parser
55#
66# Copyright (C) 2013, Shinya Takamaeda-Yamazaki
7- # modified by ryosuke fukatani
87# License: Apache 2.0
8+ # Contributor: ryosuke fukatani
99#-------------------------------------------------------------------------------
1010from __future__ import absolute_import
1111from __future__ import print_function
You can’t perform that action at this time.
0 commit comments