projects
/
c4m-jtag.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eaef86d
)
Support lower case hex letters.
author
Staf Verhaegen
<staf@stafverhaegen.be>
Thu, 1 Apr 2021 11:46:34 +0000
(13:46 +0200)
committer
Staf Verhaegen
<staf@stafverhaegen.be>
Wed, 21 Apr 2021 17:42:15 +0000
(19:42 +0200)
c4m/cocotb/jtag/c4m_jtag_svfgrammar.py
patch
|
blob
|
history
diff --git
a/c4m/cocotb/jtag/c4m_jtag_svfgrammar.py
b/c4m/cocotb/jtag/c4m_jtag_svfgrammar.py
index faf3aebd87c4bcb9b98b629285cbaa912ecda7c2..3b6a958dd3e4a4d558d066154305c5ee928c2c21 100644
(file)
--- a/
c4m/cocotb/jtag/c4m_jtag_svfgrammar.py
+++ b/
c4m/cocotb/jtag/c4m_jtag_svfgrammar.py
@@
-19,7
+19,7
@@
class Float(Grammar):
grammar = (Integer, (L("."), OPTIONAL(Integer)), OPTIONAL(L("E"), Integer))
class Hexadecimal(Grammar):
- grammar = (L("("), WORD("0-9A-F"), L(")"))
+ grammar = (L("("), WORD("0-9A-F
a-f
"), L(")"))
grammar_collapse = True
class StableState(Grammar):