Skip to content

Commit 804307b

Browse files
authored
Update Documentation to reflect latest changes
1 parent 904ce97 commit 804307b

File tree

1 file changed

+20
-11
lines changed

1 file changed

+20
-11
lines changed

doc/src/odin/index.rst

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,9 @@ Verilog Synthesizable Keyword Support:
232232
+-------------------+------------------+---------------------+--------------------+
233233
| Supported Keyword | NOT Sup. Keyword | Supported Operators | NOT Sup. Operators |
234234
+-------------------+------------------+---------------------+--------------------+
235-
| @() | automatic | != | -: |
235+
| @() | automatic | != | |
236236
+-------------------+------------------+---------------------+--------------------+
237-
| @* | deassign | !== | +: |
237+
| @* | deassign | !== | |
238238
+-------------------+------------------+---------------------+--------------------+
239239
| `define | disable | == | \>\>\> |
240240
+-------------------+------------------+---------------------+--------------------+
@@ -252,9 +252,9 @@ Verilog Synthesizable Keyword Support:
252252
+-------------------+------------------+---------------------+--------------------+
253253
| endfunction | task | || | |
254254
+-------------------+------------------+---------------------+--------------------+
255-
| endmodule | | ~& | |
255+
| endmodule | generate | ~& | |
256256
+-------------------+------------------+---------------------+--------------------+
257-
| begin | | && | |
257+
| begin | genvar | && | |
258258
+-------------------+------------------+---------------------+--------------------+
259259
| default | | << | |
260260
+-------------------+------------------+---------------------+--------------------+
@@ -266,11 +266,11 @@ Verilog Synthesizable Keyword Support:
266266
+-------------------+------------------+---------------------+--------------------+
267267
| for | | ~| | |
268268
+-------------------+------------------+---------------------+--------------------+
269-
| function | | | |
269+
| function | | $clog() | |
270270
+-------------------+------------------+---------------------+--------------------+
271-
| if | | | |
271+
| if | | -: | |
272272
+-------------------+------------------+---------------------+--------------------+
273-
| inout | | | |
273+
| inout | | +: | |
274274
+-------------------+------------------+---------------------+--------------------+
275275
| input | | | |
276276
+-------------------+------------------+---------------------+--------------------+
@@ -310,10 +310,19 @@ Verilog Synthesizable Keyword Support:
310310
+-------------------+------------------+---------------------+--------------------+
311311
| macromodule | | | |
312312
+-------------------+------------------+---------------------+--------------------+
313-
| +: | | | |
314-
+-------------------+------------------+---------------------+--------------------+
315-
| -: | | | |
316-
+-------------------+------------------+---------------------+--------------------+
313+
314+
Verilog Syntax support:
315+
*********************************
316+
317+
inline port declaration in the module declaration
318+
i.e:
319+
320+
.. code-block:: verilog
321+
322+
module a(input clk)
323+
...
324+
endmodule
325+
317326
318327
Verilog NON-Synthesizable Keyword Support:
319328
*********************************

0 commit comments

Comments
 (0)