tgbr_core/
lib.rs

1#![recursion_limit = "1024"]
2
3pub mod apu;
4pub mod bus;
5pub mod config;
6pub mod consts;
7pub mod context;
8pub mod cpu;
9pub mod gameboy;
10pub mod interface;
11pub mod io;
12pub mod mbc;
13pub mod ppu;
14pub mod rom;
15pub mod serial;
16pub mod util;
17
18pub use crate::{
19    config::{BootRoms, Config, Model},
20    gameboy::GameBoy,
21    interface::{AudioBuffer, Color, FrameBuffer, Input, LinkCable, Pad},
22    rom::Rom,
23};