8 lines
167 B
Rust
8 lines
167 B
Rust
global_asm!(include_str!("switch.S"));
|
|
|
|
extern "C" {
|
|
pub fn __switch(
|
|
current_task_cx_ptr2: *const usize,
|
|
next_task_cx_ptr2: *const usize
|
|
);
|
|
}
|