rom-analyzer 1.1.0

A CLI tool for analyzing console ROM file headers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! This module contains console-specific analysis logic for various retro gaming systems.
//!
//! Each submodule corresponds to a different console and provides functions
//! and data structures for parsing ROM headers, extracting metadata, and performing
//! other console-specific analyses.

pub mod gamegear;
pub mod gb;
pub mod gba;
pub mod genesis;
pub mod mastersystem;
pub mod n64;
pub mod nes;
pub mod psx;
pub mod segacd;
pub mod snes;