holey-bytes/hbvm/src/engine/call_stack.rs

7 lines
98 B
Rust
Raw Normal View History

2023-04-22 16:06:33 -05:00
use alloc::vec::Vec;
2023-04-18 18:08:30 -05:00
pub type CallStack = Vec<FnCall>;
pub struct FnCall {
2023-04-22 13:00:19 -05:00
pub ret: usize,
2023-04-18 18:08:30 -05:00
}