mirror of https://github.com/openXC7/prjxray.git
Fix segmaker for segments without known base address
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
7eaa8bd651
commit
ffa7ede780
|
|
@ -42,6 +42,9 @@ class segmaker:
|
|||
|
||||
segdata = self.grid["segments"][tiledata["segment"]]
|
||||
|
||||
if "baseaddr" not in segdata:
|
||||
continue
|
||||
|
||||
if segdata["type"] not in self.segments_by_type:
|
||||
self.segments_by_type[segdata["type"]] = dict()
|
||||
segments = self.segments_by_type[segdata["type"]]
|
||||
|
|
|
|||
Loading…
Reference in New Issue