We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 454e113 commit b9abaf6Copy full SHA for b9abaf6
2 files changed
tock/chips/arty_e21/Cargo.toml
@@ -6,6 +6,5 @@ edition = "2018"
6
7
[dependencies]
8
sifive = { path = "../sifive" }
9
-rv32i = { path = "../../arch/rv32i" }
10
kernel = { path = "../../kernel" }
11
tock/chips/arty_e21/src/lib.rs
@@ -6,7 +6,6 @@
pub mod chip {
use kernel;
-use rv32i;
extern "C" {
12
fn _start_trap();
@@ -21,7 +20,7 @@ impl ArtyExx {
21
20
22
impl kernel::Chip for ArtyExx {
23
type MPU = ();
24
- type UserspaceKernelBoundary = rv32i::syscall::SysCall;
+ type UserspaceKernelBoundary = ();
25
type SysTick = ();
26
}
27
0 commit comments