aboutsummaryrefslogtreecommitdiff
path: root/nmigen_boards/resources/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'nmigen_boards/resources/__init__.py')
-rw-r--r--nmigen_boards/resources/__init__.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/nmigen_boards/resources/__init__.py b/nmigen_boards/resources/__init__.py
index 531eb5e..6d28881 100644
--- a/nmigen_boards/resources/__init__.py
+++ b/nmigen_boards/resources/__init__.py
@@ -1,4 +1,6 @@
-from .display import *
-from .interface import *
-from .memory import *
-from .user import *
+from amaranth_boards.resources import *
+
+
+import warnings
+warnings.warn("instead of nmigen_boards.resources, use amaranth_boards.resources",
+ DeprecationWarning, stacklevel=2)