mirror of https://github.com/m-labs/artiq.git
satman: use riscv
This commit is contained in:
parent
ebb9f298b5
commit
869a282410
|
@ -16,3 +16,4 @@ build_misoc = { path = "../libbuild_misoc" }
|
|||
log = { version = "0.4", default-features = false }
|
||||
board_misoc = { path = "../libboard_misoc", features = ["uart_console", "log"] }
|
||||
board_artiq = { path = "../libboard_artiq" }
|
||||
riscv = { version = "0.6.0", features = ["inline-asm"] }
|
||||
|
|
|
@ -6,6 +6,7 @@ extern crate log;
|
|||
#[macro_use]
|
||||
extern crate board_misoc;
|
||||
extern crate board_artiq;
|
||||
extern crate riscv;
|
||||
|
||||
use core::convert::TryFrom;
|
||||
use board_misoc::{csr, irq, ident, clock, uart_logger, i2c};
|
||||
|
|
Loading…
Reference in New Issue