From 681e100ab51ba1d31525b1f44bce5334dc00a798 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 10 Jul 2018 06:48:45 +0100 Subject: [PATCH] move myhdl to myhdlgen directory --- src/{myhdl => myhdlgen}/__init__.py | 0 src/{myhdl => myhdlgen}/mux.py | 0 src/{myhdl => myhdlgen}/pinmux_generator.py | 2 +- src/{myhdl => myhdlgen}/pins.py | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename src/{myhdl => myhdlgen}/__init__.py (100%) rename src/{myhdl => myhdlgen}/mux.py (100%) rename src/{myhdl => myhdlgen}/pinmux_generator.py (99%) rename src/{myhdl => myhdlgen}/pins.py (100%) diff --git a/src/myhdl/__init__.py b/src/myhdlgen/__init__.py similarity index 100% rename from src/myhdl/__init__.py rename to src/myhdlgen/__init__.py diff --git a/src/myhdl/mux.py b/src/myhdlgen/mux.py similarity index 100% rename from src/myhdl/mux.py rename to src/myhdlgen/mux.py diff --git a/src/myhdl/pinmux_generator.py b/src/myhdlgen/pinmux_generator.py similarity index 99% rename from src/myhdl/pinmux_generator.py rename to src/myhdlgen/pinmux_generator.py index 733694b..09b11de 100644 --- a/src/myhdl/pinmux_generator.py +++ b/src/myhdlgen/pinmux_generator.py @@ -1,5 +1,5 @@ from parse import Parse -from myhdl.pins import IO +from myhdlgen.pins import IO from ifacebase import InterfacesBase try: from string import maketrans diff --git a/src/myhdl/pins.py b/src/myhdlgen/pins.py similarity index 100% rename from src/myhdl/pins.py rename to src/myhdlgen/pins.py -- 2.30.2