From: Jean THOMAS Date: Mon, 8 Jun 2020 16:46:39 +0000 (+0200) Subject: Rename LiteDRAM to gram X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6e27420d140d9fe5b9b283c40c31f32d640553a8;p=gram.git Rename LiteDRAM to gram --- diff --git a/gram/common.py b/gram/common.py index d416d16..ab2a485 100644 --- a/gram/common.py +++ b/gram/common.py @@ -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 -------------------------------------------------------------------------------