Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
f2f63a0f
There was an error fetching the commit references. Please try again later.
Commit
f2f63a0f
authored
11 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
fixed hw write declarations to not be const
parent
6f6d5158
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/hw/hw.cpp
+4
-4
4 additions, 4 deletions
src/core/hw/hw.cpp
with
4 additions
and
4 deletions
src/core/hw/hw.cpp
+
4
−
4
View file @
f2f63a0f
...
...
@@ -27,10 +27,10 @@ template void Read<u32>(u32 &var, const u32 addr);
template
void
Read
<
u16
>(
u16
&
var
,
const
u32
addr
);
template
void
Read
<
u8
>(
u8
&
var
,
const
u32
addr
);
template
void
Write
<
const
u64
>(
u32
addr
,
const
u64
data
);
template
void
Write
<
const
u32
>(
u32
addr
,
const
u32
data
);
template
void
Write
<
const
u16
>(
u32
addr
,
const
u16
data
);
template
void
Write
<
const
u8
>(
u32
addr
,
const
u8
data
);
template
void
Write
<
u64
>(
u32
addr
,
const
u64
data
);
template
void
Write
<
u32
>(
u32
addr
,
const
u32
data
);
template
void
Write
<
u16
>(
u32
addr
,
const
u16
data
);
template
void
Write
<
u8
>(
u32
addr
,
const
u8
data
);
/// Update hardware
void
Update
()
{
...
...
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