satman: use riscv

This commit is contained in:
occheung 2021-07-22 16:28:18 +08:00
parent ebb9f298b5
commit 869a282410
2 changed files with 2 additions and 0 deletions

View File

@ -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"] }

View File

@ -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};