gb_cart 0.2.0

GB/CGB file header library and utilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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 Nintendo Game Boy or Game Boy Color ROM internal
//! headers.
//!
//! This has a companion cli application crate that will read an GB or CGB file and print out its
//! information.

pub mod cart;
pub mod cart_type;
pub mod error;
pub mod licensee;

pub use crate::cart::Cart;
pub use crate::cart::Header;
pub use crate::cart::HeaderRead;
pub use crate::error::Error;