mirror of
https://github.com/VLSIDA/OpenRAM.git
synced 2026-08-30 01:48:33 +02:00
bug fix list vs set
This commit is contained in:
@@ -40,7 +40,7 @@ class multi_delay_chain(design.design):
|
||||
self.pinout_list = [self.rows] # TODO: check for off-by-one here
|
||||
else:
|
||||
# Set() to sort in ascending order and remove duplicates
|
||||
self.pinout_list = set(pinout_list)
|
||||
self.pinout_list = list(set(pinout_list))
|
||||
|
||||
# Check pinout bounds
|
||||
debug.check(self.pinout_list[-1] <= self.rows,
|
||||
|
||||
Reference in New Issue
Block a user