Skip to content

Commit

Permalink
Arrange the gameboy main code
Browse files Browse the repository at this point in the history
  • Loading branch information
alloncm committed Sep 3, 2021
1 parent dff63cb commit f52c16c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib_gb/src/machine/gameboy.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
use crate::{apu::{audio_device::AudioDevice, gb_apu::GbApu}, cpu::{gb_cpu::GbCpu, opcodes::opcode_resolver::*}, keypad::{joypad::Joypad, joypad_provider::JoypadProvider, joypad_register_updater}, mmu::{carts::mbc::Mbc, gb_mmu::{GbMmu, BOOT_ROM_SIZE}, memory::Memory}, ppu::{gb_ppu::{CYCLES_PER_FRAME, SCREEN_HEIGHT, SCREEN_WIDTH}, gfx_device::GfxDevice}, utils::bit_masks::BIT_7_MASK};
use crate::{
apu::{audio_device::AudioDevice, gb_apu::GbApu},
cpu::{gb_cpu::GbCpu, opcodes::opcode_resolver::*},
keypad::{joypad::Joypad, joypad_provider::JoypadProvider, joypad_register_updater},
mmu::{carts::mbc::Mbc, gb_mmu::{GbMmu, BOOT_ROM_SIZE}, memory::Memory},
ppu::{gb_ppu::CYCLES_PER_FRAME, gfx_device::GfxDevice}, utils::bit_masks::BIT_7_MASK
};

use super::interrupts_handler::InterruptsHandler;
use std::boxed::Box;
Expand Down

0 comments on commit f52c16c

Please sign in to comment.