mirror of https://github.com/openXC7/prjxray.git
Fix hclk database entries
Signed-off-by: Clifford Wolf <clifford@clifford.at> Signed-off-by: Tim 'mithro' Ansell <mithro@mithis.com>
This commit is contained in:
parent
e52d9cb59a
commit
bbe620abb4
|
|
@ -54,7 +54,7 @@ class segmaker:
|
|||
segments[segname] = { "bits": set(), "tags": dict() }
|
||||
|
||||
base_frame = int(segdata["baseaddr"][0][2:], 16)
|
||||
for wordidx in range(segdata["baseaddr"][1], segdata["baseaddr"][1]+2):
|
||||
for wordidx in range(segdata["baseaddr"][1], segdata["baseaddr"][1]+segdata["words"]):
|
||||
if base_frame not in self.bits:
|
||||
continue
|
||||
if wordidx not in self.bits[base_frame]:
|
||||
|
|
|
|||
Loading…
Reference in New Issue