From: Florent Kermarrec Date: Tue, 26 Apr 2016 15:13:41 +0000 (+0200) Subject: gen/fhdl/verilog: add do in reserved_keywords X-Git-Tag: 24jan2021_ls180~1957 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=42767286ca011521ae11ae85bb421d0e56c2f712;p=litex.git gen/fhdl/verilog: add do in reserved_keywords --- diff --git a/litex/gen/fhdl/verilog.py b/litex/gen/fhdl/verilog.py index b0906182..78a0aa88 100644 --- a/litex/gen/fhdl/verilog.py +++ b/litex/gen/fhdl/verilog.py @@ -27,7 +27,7 @@ _reserved_keywords = { "specify", "specparam", "strong0", "strong1", "supply0", "supply1", "table", "task", "time", "tran", "tranif0", "tranif1", "tri", "tri0", "tri1", "triand", "trior", "trireg", "unsigned", "use", "vectored", "wait", - "wand", "weak0", "weak1", "while", "wire", "wor","xnor", "xor" + "wand", "weak0", "weak1", "while", "wire", "wor","xnor", "xor", "do" }