1
0
forked from Rativel/BurritOS

First iteration (not complete) of a test in thread_manager

This commit is contained in:
Quentin Legot
2023-03-22 18:30:31 +01:00
parent 6edb88f337
commit 6d0477153b
4 changed files with 31 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ macro_rules! get_new_thread {
pub struct ThreadContext {
pub int_registers: [i64; NUM_INT_REGS],
pub float_registers: [f32; NUM_FP_REGS],
pc: i64,
pub pc: i64,
}
#[derive(PartialEq, Debug)]