1
0
Fork 0

Compare commits

..

No commits in common. "d76f6fee0e046e11e1b8868a6c5657810f39fe51" and "c77e165cc8d91a21909f9f5ca74107e5edc879e6" have entirely different histories.

3 changed files with 2 additions and 4 deletions

View File

@ -9,7 +9,6 @@ members = [
"experiments",
"szl",
]
resolver = "2"
[profile.release]
panic = "abort"

View File

@ -6,7 +6,6 @@ extern crate alloc;
use alloc::collections::BTreeMap;
use core::arch::asm;
use core::ptr::addr_of_mut;
use libasync::{
delay,
smoltcp::{Sockets, TcpStream},
@ -71,7 +70,7 @@ interrupt_handler!(IRQ, irq, __irq_stack0_start, __irq_stack1_start, {
if id.0 == 0 {
gic.end_interrupt(id);
asm::exit_irq();
SP.write(addr_of_mut!(__stack1_start) as *mut _ as u32);
SP.write(&mut __stack1_start as *mut _ as u32);
asm::enable_irq();
CORE1_RESTART.store(false, Ordering::Relaxed);
notify_spin_lock();

View File

@ -51,7 +51,7 @@ macro_rules! interrupt_handler {
#[link_section = ".text.boot"]
#[no_mangle]
#[naked]
pub unsafe extern "C" fn $name() {
pub unsafe extern "C" fn $name() -> ! {
asm!(
// setup SP, depending on CPU 0 or 1
// and preserve registers