Skip to content

Commit 30d03c9

Browse files
Update ramlib init
1 parent b9671b1 commit 30d03c9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lambdalib/ramlib/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
from .la_syncfifo.la_syncfifo import Syncfifo
55
from .la_dpram.la_dpram import Dpram
66
from .la_spram.la_spram import Spram
7+
from .la_spram.la_spram import Tdpram
78

89
__all__ = ['Asyncfifo',
910
'Syncfifo',
1011
'Dpram',
11-
'Spram']
12+
'Spram',
13+
'Tdpram']
1214

1315

1416
class RAMLib(Design):
@@ -20,3 +22,4 @@ def __init__(self):
2022
self.add_depfileset(Syncfifo(), depfileset="rtl")
2123
self.add_depfileset(Dpram(), depfileset="rtl")
2224
self.add_depfileset(Spram(), depfileset="rtl")
25+
self.add_depfileset(Tdpram(), depfileset="rtl")

0 commit comments

Comments
 (0)