From cce29e8b831046a9497962c60fa82e4a29d45425 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 17 Oct 2016 14:06:35 +0800 Subject: [PATCH] gateware/spi: fix import --- artiq/gateware/spi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/gateware/spi.py b/artiq/gateware/spi.py index 17ab523ad..23e52915f 100644 --- a/artiq/gateware/spi.py +++ b/artiq/gateware/spi.py @@ -2,7 +2,7 @@ from itertools import product from migen import * from misoc.interconnect import wishbone -from misoc.cores.spi.core import SPIMachine +from misoc.cores.spi import SPIMachine class SPIMaster(Module):