rambo 0.1.0

A tool to map ROM collateral damage
Documentation
1
2
3
4
5
6
7
8
9
//! 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()?;
    Cli::parse().run()
}