miden-debug 0.6.0

An interactive debugger for Miden VM programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod breakpoint;
mod memory;
mod native_ptr;
mod stacktrace;

pub use self::{
    breakpoint::{Breakpoint, BreakpointType},
    memory::{FormatType, MemoryMode, ReadMemoryExpr},
    native_ptr::NativePtr,
    stacktrace::{
        CallFrame, CallStack, CurrentFrame, OpDetail, ResolvedLocation, StackTrace, StepInfo,
    },
};