From 805715fa5612510510837234bb70df28225ce1ed Mon Sep 17 00:00:00 2001 From: Jean THOMAS Date: Fri, 12 Jun 2020 12:34:39 +0200 Subject: [PATCH] Fix default clock domain for gramNativePort --- gram/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gram/common.py b/gram/common.py index 1369c19..7301235 100644 --- a/gram/common.py +++ b/gram/common.py @@ -302,7 +302,7 @@ class gramInterface(Record): class gramNativePort(Settings): - def __init__(self, mode, address_width, data_width, clock_domain="sys", id=0): + def __init__(self, mode, address_width, data_width, clock_domain="sync", id=0): self.set_attributes(locals()) self.lock = Signal() -- 2.30.2