├── .gdbscript ├── .lldbscript ├── LICENSE ├── README.md ├── prototype ├── gdbstub.py └── screenshot.png ├── test_app_c ├── README.md └── app.c ├── test_app_rust ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md └── src │ └── main.rs └── wasm2dbg.py /.gdbscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/.gdbscript -------------------------------------------------------------------------------- /.lldbscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/.lldbscript -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/README.md -------------------------------------------------------------------------------- /prototype/gdbstub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/prototype/gdbstub.py -------------------------------------------------------------------------------- /prototype/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/prototype/screenshot.png -------------------------------------------------------------------------------- /test_app_c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/test_app_c/README.md -------------------------------------------------------------------------------- /test_app_c/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/test_app_c/app.c -------------------------------------------------------------------------------- /test_app_rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk -------------------------------------------------------------------------------- /test_app_rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/test_app_rust/Cargo.lock -------------------------------------------------------------------------------- /test_app_rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/test_app_rust/Cargo.toml -------------------------------------------------------------------------------- /test_app_rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/test_app_rust/README.md -------------------------------------------------------------------------------- /test_app_rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/test_app_rust/src/main.rs -------------------------------------------------------------------------------- /wasm2dbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasm3/wasm-debug/HEAD/wasm2dbg.py --------------------------------------------------------------------------------