forked from M-Labs/zynq-rs
panic: fix CORE_MASK
This commit is contained in:
parent
1e4be13869
commit
b129d3e0df
|
@ -1,5 +1,5 @@
|
||||||
use libregister::RegisterR;
|
use libregister::RegisterR;
|
||||||
use libcortex_a9::regs::{DFSR, MPIDR, CORE_MASK};
|
use libcortex_a9::regs::{DFSR, MPIDR};
|
||||||
use libboard_zynq::{println, slcr, stdio};
|
use libboard_zynq::{println, slcr, stdio};
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
|
@ -16,6 +16,7 @@ pub unsafe extern "C" fn PrefetchAbort() {
|
||||||
pub unsafe extern "C" fn DataAbort() {
|
pub unsafe extern "C" fn DataAbort() {
|
||||||
stdio::drop_uart();
|
stdio::drop_uart();
|
||||||
|
|
||||||
|
const CORE_MASK: u32 = 0x3;
|
||||||
println!("DataAbort on core {}", MPIDR.read() & CORE_MASK);
|
println!("DataAbort on core {}", MPIDR.read() & CORE_MASK);
|
||||||
println!("DFSR: {:03X}", DFSR.read());
|
println!("DFSR: {:03X}", DFSR.read());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue