reznez 0.0.0

The high accuracy NES Emulator
Documentation
1
2
3
4
5
6
7
use crate::memory::mappers::mmc3::mmc3::Mapper004Mmc3;
use crate::memory::mappers::mmc3::mc_acc_irq_state::McAccIrqState;

// MMC3. Identical to submapper 0, except MC-ACC's IRQ behavior is used instead of Sharp's.
pub fn mapper004_3() -> Mapper004Mmc3 {
    Mapper004Mmc3::new(Box::new(McAccIrqState::new()))
}