sfc_cart 0.3.1

SNES/SFC ROM header library and utilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR MPL-2.0
// SPDX-FileCopyrightText: 2026 Gabriel Marcano <gabemarcano@yahoo.com>

//! This crate contains routines to read and write Super Nintendo SFC ROM internal headers.
//!
//! This has a companion cli application crate that will read an SFC file and print out its
//! information.

pub mod cart;
pub mod error;
pub mod metadata;

pub use crate::cart::Cart;
pub use crate::error::Error;
pub use crate::metadata::Metadata;
pub use crate::metadata::MetadataRead;