Fixed some missing "verilog_" in documentation
authorRodrigo Alejandro Melo <rmelo@inti.gob.ar>
Fri, 13 Dec 2019 13:17:05 +0000 (10:17 -0300)
committerRodrigo Alejandro Melo <rmelo@inti.gob.ar>
Fri, 13 Dec 2019 13:17:05 +0000 (10:17 -0300)
frontends/verilog/preproc.cc
frontends/verilog/verilog_lexer.l
manual/CHAPTER_Verilog.tex

index 7e107dc267b8cff6b7fbaa5c2cfac02586824243..161253a99fec97c080b2aeb1aea5c48ff9fd2601 100644 (file)
@@ -28,7 +28,7 @@
  *
  *  Ad-hoc implementation of a Verilog preprocessor. The directives `define,
  *  `include, `ifdef, `ifndef, `else and `endif are handled here. All other
- *  directives are handled by the lexer (see lexer.l).
+ *  directives are handled by the lexer (see verilog_lexer.l).
  *
  */
 
index c8984c2c41a404f60d9b6555c842addad7ed0bfa..ca23df3e8c27c68224b2be6f15885bbf1645394d 100644 (file)
@@ -28,7 +28,7 @@
  *
  *  A simple lexer for Verilog code. Non-preprocessor compiler directives are
  *  handled here. The preprocessor stuff is handled in preproc.cc. Everything
- *  else is left to the bison parser (see parser.y).
+ *  else is left to the bison parser (see verilog_parser.y).
  *
  */
 
index e9ca6114e01a98f890f166b7d425c5591a586791..d4cc55647df3e38d55712462bc7d26fc5a0365d6 100644 (file)
@@ -93,7 +93,7 @@ frontends/verilog/preproc.cc} in the Yosys source tree.
 
 \begin{sloppypar}
 The Verilog Lexer is written using the lexer generator {\it flex} \citeweblink{flex}. Its source code
-can be found in {\tt frontends/verilog/lexer.l} in the Yosys source tree.
+can be found in {\tt frontends/verilog/verilog\_lexer.l} in the Yosys source tree.
 The lexer does little more than identifying all keywords and literals
 recognised by the Yosys Verilog frontend.
 \end{sloppypar}
@@ -115,7 +115,7 @@ whenever possible.)
 \subsection{The Verilog Parser}
 
 The Verilog Parser is written using the parser generator {\it bison} \citeweblink{bison}. Its source code
-can be found in {\tt frontends/verilog/parser.y} in the Yosys source tree.
+can be found in {\tt frontends/verilog/verilog\_parser.y} in the Yosys source tree.
 
 It generates an AST using the \lstinline[language=C++]{AST::AstNode} data structure
 defined in {\tt frontends/ast/ast.h}. An \lstinline[language=C++]{AST::AstNode} object has