do more test with last changes fix small issues
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Sat, 2 May 2015 12:26:19 +0000 (14:26 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Sat, 2 May 2015 14:22:38 +0000 (16:22 +0200)
misoclib/com/liteusb/frontend/wishbone.py
misoclib/com/liteusb/software/wishbone.py
software/common.mak

index fceb54f555362b4eb927ff25acc110ccd4a19401..8b4d4dc1816962a9b0aec0375f49f815fbba1536 100644 (file)
@@ -1,7 +1,7 @@
 from migen.fhdl.std import *
 
 from misoclib.com.liteusb.common import *
-from misoclib.tools.litescope.bridge.wishbone import LiteScopeWishboneBridge
+from misoclib.tools.litescope.frontend.wishbone import LiteScopeWishboneBridge
 
 class LiteUSBWishboneBridge(LiteScopeWishboneBridge):
     def __init__(self, port, clk_freq):
index 971bb97ed7d4f660c03b8cc5774e972cd28fba8a..a1a1a6372a9b71038741d06e682ddaa639b1bd29 100644 (file)
@@ -5,7 +5,7 @@ class LiteUSBWishboneDriverFTDI:
         "write": 0x01,
         "read":  0x02
     }
-    def __init__(self, interface, mode, tag, addrmap=None, debug=False):
+    def __init__(self, interface, mode, tag, addrmap=None, busword=8, debug=False):
         self.interface = interface
         self.mode = mode
         self.tag = tag
index 493ec2e833b50ba87881baee1365db9675491371..b2aaf71b156c2479991e1ad81b3d53b8680dad0e 100644 (file)
@@ -19,7 +19,7 @@ LD_quiet = @echo " LD      " $@ && $(TARGET_PREFIX)ld
 OBJCOPY_quiet = @echo " OBJCOPY " $@ && $(TARGET_PREFIX)objcopy
 RANLIB_quiet = @echo " RANLIB   " $@ && $(TARGET_PREFIX)ranlib
 
-MSC_GIT_ID := $(shell cd $(MSCDIR) && python3 -c "from misoclib.cpu.peripherals.identifier.git import get_id; print(hex(get_id()), end='')")
+MSC_GIT_ID := $(shell cd $(MSCDIR) && python3 -c "from misoclib.cpu.git import get_id; print(hex(get_id()), end='')")
 
 ifeq ($(V),1)
        CC = $(CC_normal)