mirror of https://github.com/YosysHQ/icestorm.git
icebox: Fix parsing of PLL directive
This commit is contained in:
parent
7e4689d3f5
commit
5ac8f1a687
|
|
@ -879,7 +879,10 @@ class IOTile(Tile):
|
|||
self.blocks = [None, None]
|
||||
|
||||
def read(self, fields):
|
||||
super().read(fields)
|
||||
if len(fields) == 2 and fields[0] == 'PLL':
|
||||
self.apply_directive(*fields) # TODO
|
||||
else:
|
||||
super().read(fields)
|
||||
|
||||
def new_block(self, fields):
|
||||
if fields == ['io_0'] and self.blocks[0] is None:
|
||||
|
|
|
|||
Loading…
Reference in New Issue