mirror of https://github.com/YosysHQ/icestorm.git
icebox: Preserve extra bits when writing to file
This commit is contained in:
parent
873eb9effa
commit
7e692cba7c
|
|
@ -690,6 +690,8 @@ class iceconfig:
|
||||||
print(".ram_data %d %d" % (x, y), file=f)
|
print(".ram_data %d %d" % (x, y), file=f)
|
||||||
for line in self.ram_data[(x, y)]:
|
for line in self.ram_data[(x, y)]:
|
||||||
print(line, file=f)
|
print(line, file=f)
|
||||||
|
for extra_bit in sorted(self.extra_bits):
|
||||||
|
print(".extra_bit %d %d %d" % extra_bit, file=f)
|
||||||
|
|
||||||
class tileconfig:
|
class tileconfig:
|
||||||
def __init__(self, tile):
|
def __init__(self, tile):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue