rambo 0.1.1

A tool to map ROM collateral damage
Documentation
1
2
3
4
5
6
7
8
9
10
//! Diagnostic: survey the post-reset state of any chip's SRAM via SWD.
use clap::Parser;
use color_eyre::Result;
use rambo::Cli;

fn main() -> Result<()> {
    color_eyre::install()?;
    let status = Cli::parse().run()?;
    std::process::exit(status.code());
}