feat(eeprom): Move cartridge into its own module

Former-commit-id: e7fd72db6e14770a0b099f4b5ce32da1fb6fa0f5
This commit is contained in:
Michel Heily 2020-01-29 21:48:38 +02:00
parent 51a79d68da
commit 1f073199b3
5 changed files with 4 additions and 4 deletions

View file

@ -11,9 +11,10 @@ use zip::ZipArchive;
use super::super::util::read_bin_file;
use super::{Addr, Bus, GBAResult};
use super::backup::eeprom::*;
use super::backup::flash::*;
use super::backup::{BackupMemory, BackupMemoryInterface, BackupType, BACKUP_FILE_EXT};
mod backup;
use backup::eeprom::*;
use backup::flash::*;
use backup::{BackupMemory, BackupMemoryInterface, BackupType, BACKUP_FILE_EXT};
/// From GBATEK
///

View file

@ -1,5 +1,4 @@
pub mod arm7tdmi;
mod backup;
pub mod cartridge;
pub mod gpu;
pub mod sound;