change
This commit is contained in:
parent
a9643bf9d2
commit
eca27c5651
|
@ -10,4 +10,6 @@ serde = { version = "1.0", default-features = false, features = [
|
||||||
"derive",
|
"derive",
|
||||||
"alloc",
|
"alloc",
|
||||||
] }
|
] }
|
||||||
bincode = { version = "1.3.3", default-features = false }
|
bincode = { version = "1.3.3", default-features = false, features = [
|
||||||
|
"serde_no_std",
|
||||||
|
] }
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![no_main]
|
#![no_main]
|
||||||
|
|
||||||
|
#[no_mangle]
|
||||||
fn _start() {
|
fn _start() {
|
||||||
unsafe {
|
unsafe {
|
||||||
let abc = read_mem_addr(13);
|
let abc = read_mem_addr(13);
|
||||||
|
|
Loading…
Reference in a new issue