Rename LiteDRAM to gram
authorJean THOMAS <git0@pub.jeanthomas.me>
Mon, 8 Jun 2020 16:46:39 +0000 (18:46 +0200)
committerJean THOMAS <git0@pub.jeanthomas.me>
Mon, 8 Jun 2020 16:46:39 +0000 (18:46 +0200)
gram/common.py

index d416d16c04269fbc9a7f319cddd63d9c5e6d455e..ab2a485040f43db87ff1bb3a74a97b3e385973ff 100644 (file)
@@ -314,12 +314,12 @@ class gramNativePort(Settings):
 
 class gramNativeWritePort(gramNativePort):
     def __init__(self, *args, **kwargs):
-        LiteDRAMNativePort.__init__(self, "write", *args, **kwargs)
+        gramNativePort.__init__(self, "write", *args, **kwargs)
 
 
 class gramNativeReadPort(gramNativePort):
     def __init__(self, *args, **kwargs):
-        LiteDRAMNativePort.__init__(self, "read", *args, **kwargs)
+        gramNativePort.__init__(self, "read", *args, **kwargs)
 
 
 # Timing Controllers -------------------------------------------------------------------------------