sfc_cart 0.2.0

SNES/SFC ROM header library and utilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR MPL-2.0
// SPDX-FileCopyrightText: 2024 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 use crate::cart::Cart;
pub use crate::error::Error;
pub use crate::cart::Header;
pub use crate::cart::HeaderRead;