removed unused files

This commit is contained in:
kirjavascript 2022-02-22 17:35:36 +00:00
parent cdff3a97dd
commit efa67a2992
6 changed files with 2 additions and 3 deletions

View file

@ -10,7 +10,6 @@ pub mod z80;
use gfx::Gfx;
// TODO: rendering from nestulator
// TODO: composit layers in gfx istead of multiple buffers
pub struct Megadrive {
@ -32,7 +31,6 @@ impl Megadrive {
core,
gfx: Gfx::new(),
}
}
pub fn step_n(&mut self, amount: usize) {

View file

@ -5,7 +5,8 @@ use emu::Megadrive;
lazy_mut! {
static mut EMU: Megadrive = Megadrive::new(
include_bytes!("/home/cake/sonic/roms/s2.bin").to_vec()
// include_bytes!("/home/cake/sonic/roms/s2.bin").to_vec()
include_bytes!("/home/cake/Genesis/Golden Axe II (W) [!].bin").to_vec()
);
}