mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 04:47:25 -04:00
Fix clock extraction
This commit is contained in:
parent
659e234be0
commit
a2f4e65e6c
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ def synthesizeAll(littleRISCV_path):
|
|||
content = f.read()
|
||||
|
||||
clock_p = re.compile("set\sCLOCK_SLOW\s(\d+\.?\d*);")
|
||||
m = clock_p.match(content)
|
||||
m = clock_p.search(content)
|
||||
|
||||
if m is not None:
|
||||
clock = m.group(1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue