Files
damn_simple_architecture/compiler/src/backend/dsa/scope.rs
T
2026-02-10 16:37:33 +00:00

8 lines
113 B
Rust

pub struct FunctionContext {
name: String,
stack_offset: i32,
registers: [(Register, bool); 16],
}