8 lines
113 B
Rust
8 lines
113 B
Rust
pub struct FunctionContext {
|
|
name: String,
|
|
|
|
stack_offset: i32,
|
|
|
|
registers: [(Register, bool); 16],
|
|
}
|