diff options
| author | azidar | 2015-08-03 11:56:39 -0700 |
|---|---|---|
| committer | azidar | 2015-08-03 11:56:39 -0700 |
| commit | ec3bf6a6a74061721024dece229f7a6062f5c7fc (patch) | |
| tree | da25b297966854eee88ca581003a656f9f496c1b /src | |
| parent | 6f098fb5328ebfe3137ff449e9905bdf0f668859 (diff) | |
Added concrete syntax for EmptyStmt()
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/stanza/ir-parser.stanza | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/stanza/ir-parser.stanza b/src/main/stanza/ir-parser.stanza index 34d9ef57..c622104c 100644 --- a/src/main/stanza/ir-parser.stanza +++ b/src/main/stanza/ir-parser.stanza @@ -232,6 +232,7 @@ defsyntax firrtl : ;Main Statement Productions defrule statements : + stmt = (skip) : EmptyStmt() stmt = (wire ?name:#id! #:! ?t:#type!) : DefWire(first-info(form),name, t) stmt = (reg ?name:#id! #:! ?t:#type! ?clk:#exp! ?reset:#exp!) : DefRegister(first-info(form),name, t,clk,reset) stmt = (cmem ?name:#id! #:! ?t:#vectype! ?clk:#exp!) : DefMemory(first-info(form),name, t, false, clk) |
