mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-21 20:02:07 +00:00
docs/verilog_frontend.rst: Fix indentation
This commit is contained in:
parent
7b5035e0c4
commit
b90622b7ed
1 changed files with 6 additions and 6 deletions
|
@ -187,13 +187,13 @@ simplifies the creation of AST nodes for simple expressions a bit. For example
|
||||||
the bison code for parsing multiplications:
|
the bison code for parsing multiplications:
|
||||||
|
|
||||||
.. code:: none
|
.. code:: none
|
||||||
:number-lines:
|
:number-lines:
|
||||||
|
|
||||||
basic_expr TOK_ASTER attr basic_expr {
|
basic_expr TOK_ASTER attr basic_expr {
|
||||||
$$ = std::make_unique<AstNode>(AST_MUL, std::move($1), std::move($4));
|
$$ = std::make_unique<AstNode>(AST_MUL, std::move($1), std::move($4));
|
||||||
SET_AST_NODE_LOC($$.get(), @1, @4);
|
SET_AST_NODE_LOC($$.get(), @1, @4);
|
||||||
append_attr($$.get(), $3);
|
append_attr($$.get(), $3);
|
||||||
} |
|
} |
|
||||||
|
|
||||||
The generated AST data structure is then passed directly to the AST frontend
|
The generated AST data structure is then passed directly to the AST frontend
|
||||||
that performs the actual conversion to RTLIL.
|
that performs the actual conversion to RTLIL.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue