-
João Magalhães authored
Created infrastructure that allows the usage of the serial device to capture the result of the tests. Then the test is executed agains a pre-defined number of cycles and the result is compared against expectation.
João Magalhães authoredCreated infrastructure that allows the usage of the serial device to capture the result of the tests. Then the test is executed agains a pre-defined number of cycles and the result is compared against expectation.
lib.rs 278 B
#![allow(clippy::uninlined_format_args)]
pub mod apu;
pub mod cpu;
pub mod data;
pub mod devices;
pub mod dma;
pub mod gb;
pub mod gen;
pub mod inst;
pub mod macros;
pub mod mmu;
pub mod pad;
pub mod ppu;
pub mod rom;
pub mod serial;
pub mod test;
pub mod timer;
pub mod util;