Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
boytacean
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
João Magalhães
boytacean
Commits
0fbb7ea4
Verified
Commit
0fbb7ea4
authored
2 years ago
by
João Magalhães
Browse files
Options
Downloads
Patches
Plain Diff
feat: new rom files
parent
da309eab
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#887
passed
2 years ago
Stage: build
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
res/boot/dmg_bootix.bin
+0
-0
0 additions, 0 deletions
res/boot/dmg_bootix.bin
res/boot/mgb_bootix.bin
+0
-0
0 additions, 0 deletions
res/boot/mgb_bootix.bin
src/gb.rs
+9
-1
9 additions, 1 deletion
src/gb.rs
with
9 additions
and
1 deletion
res/boot/dmg_bootix.bin
0 → 100644
+
0
−
0
View file @
0fbb7ea4
File added
This diff is collapsed.
Click to expand it.
res/boot/mgb_bootix.bin
0 → 100644
+
0
−
0
View file @
0fbb7ea4
File added
This diff is collapsed.
Click to expand it.
src/gb.rs
+
9
−
1
View file @
0fbb7ea4
...
...
@@ -66,10 +66,18 @@ impl GameBoy {
self
.load_boot
(
&
data
);
}
pub
fn
load_boot_d
efault
(
&
mut
self
)
{
pub
fn
load_boot_d
mg_f
(
&
mut
self
)
{
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
)
{
self
.load_boot
(
&
DMG_BOOT
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment