You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use magenboy_common::{check_for_terminal_feature_flag, get_terminal_feature_flag_value, init_gameboy, joypad_menu::*, menu::*, mpmc_gfx_device::MpmcGfxDevice,EMULATOR_STATE};
4
-
use magenboy_core::{ppu::{gb_ppu::{BUFFERS_NUMBER,SCREEN_WIDTH,SCREEN_HEIGHT}, gfx_device::{GfxDevice,Pixel}}, keypad::joypad_provider::JoypadProvider};
1
+
use std::{env, path::PathBuf};
2
+
use magenboy_common::{check_for_terminal_feature_flag, get_terminal_feature_flag_value, init_gameboy, joypad_menu::*, mbc_handler::{initialize_mbc, release_mbc}, menu::*};
3
+
use magenboy_core::{ppu::gb_ppu::{SCREEN_HEIGHT,SCREEN_WIDTH}, apu::audio_device::*, keypad::joypad::NUM_OF_KEYS};
5
4
use magenboy_rpi::{configuration::{display::*, emulation::*, joypad::*}, drivers::*, peripherals::PERIPHERALS,BlankAudioDevice,MENU_PIN_BCM};
6
5
7
6
fnmain(){
@@ -14,61 +13,67 @@ fn main(){
14
13
15
14
let header = std::format!("MagenBoy v{}", magenboy_common::VERSION);
0 commit comments