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
ae0df407
Verified
Commit
ae0df407
authored
1 year ago
by
João Magalhães
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into joamag/system-state
parents
09ee1a30
d62b521d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!31
System state save
Pipeline
#3210
canceled
1 year ago
Stage: build
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/gb.rs
+4
-2
4 additions, 2 deletions
src/gb.rs
src/mmu.rs
+2
-0
2 additions, 0 deletions
src/mmu.rs
src/pad.rs
+2
-0
2 additions, 0 deletions
src/pad.rs
src/ppu.rs
+2
-0
2 additions, 0 deletions
src/ppu.rs
with
10 additions
and
2 deletions
src/gb.rs
+
4
−
2
View file @
ae0df407
//! Main GameBoy emulation entrypoint functions and structures.
use
std
::{
cell
::
RefCell
,
collections
::
VecDeque
,
...
...
@@ -261,8 +263,8 @@ impl Default for GameBoyConfig {
}
}
/// Aggregation structure
tha
allow
s
the bundling of
/// all the components of a
g
ame
b
oy into a single a
/// Aggregation structure allow
ing
the bundling of
/// all the components of a
G
ame
B
oy into a single a
/// single element for easy access.
pub
struct
Components
{
pub
ppu
:
Ppu
,
...
...
This diff is collapsed.
Click to expand it.
src/mmu.rs
+
2
−
0
View file @
ae0df407
//! MMU (Memory Management Unit) functions and structures.
use
std
::{
cell
::
RefCell
,
rc
::
Rc
};
use
crate
::{
...
...
This diff is collapsed.
Click to expand it.
src/pad.rs
+
2
−
0
View file @
ae0df407
//! Gamepad related functions and structures.
use
crate
::
warnln
;
#[cfg(feature
=
"wasm"
)]
...
...
This diff is collapsed.
Click to expand it.
src/ppu.rs
+
2
−
0
View file @
ae0df407
//! PPU (Picture Processing Unit) functions and structures.
use
core
::
fmt
;
use
std
::{
borrow
::
BorrowMut
,
...
...
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