gdbstub_arch 0.3.3

Implementations of `gdbstub::arch::Arch` for various architectures.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `Register` structs for the WebAssembly architecture.
//!
//! Because Wasm is mostly stack-based, it only has one "register":
//! the program counter (PC) according to the gdbstub mappings for
//! this architecture.

/// `RegId` definitions for WebAssembly.
pub mod id;

mod wasm_regs;

pub use wasm_regs::WasmRegisters;