firmware: match simplesoc memory addresses

pull/1/head
Sebastien Bourdeauducq 2019-06-07 23:17:03 +08:00
parent ad4f00e93d
commit 2cfafcdf20
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
MEMORY
{
FLASH : ORIGIN = 0x80000000, LENGTH = 16M
RAM : ORIGIN = 0x81000000, LENGTH = 16K
FLASH : ORIGIN = 0x00000000, LENGTH = 16K
RAM : ORIGIN = 0x0004000, LENGTH = 16K
}

View File

@ -11,7 +11,7 @@ fn main() -> ! {
let foo = "hello world\n";
loop {
for c in foo.chars() {
let mem = 0x1001_3000 as *mut u8;
let mem = 0x00400000 as *mut u8;
unsafe { *mem = c as u8 }
}
}