Skip to content
Snippets Groups Projects
Verified Commit 0fbb7ea4 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

feat: new rom files

parent da309eab
No related branches found
No related tags found
No related merge requests found
Pipeline #887 passed
File added
File added
...@@ -66,10 +66,18 @@ impl GameBoy { ...@@ -66,10 +66,18 @@ impl GameBoy {
self.load_boot(&data); self.load_boot(&data);
} }
pub fn load_boot_default(&mut self) { pub fn load_boot_dmg_f(&mut self) {
self.load_boot_file("./res/boot/dmg_boot.bin"); self.load_boot_file("./res/boot/dmg_boot.bin");
} }
pub fn load_boot_sgb_f(&mut self) {
self.load_boot_file("./res/boot/sgb_boot.bin");
}
pub fn load_boot_default(&mut self) {
self.load_boot_dmg_f();
}
pub fn load_boot_dmg(&mut self) { pub fn load_boot_dmg(&mut self) {
self.load_boot(&DMG_BOOT); self.load_boot(&DMG_BOOT);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment