From 6e27420d140d9fe5b9b283c40c31f32d640553a8 Mon Sep 17 00:00:00 2001 From: Jean THOMAS Date: Mon, 8 Jun 2020 18:46:39 +0200 Subject: [PATCH] Rename LiteDRAM to gram --- gram/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ------------------------------------------------------------------------------- -- 2.30.2