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
47960b06
There was an error fetching the commit references. Please try again later.
Commit
47960b06
authored
8 years ago
by
wwylele
Browse files
Options
Downloads
Patches
Plain Diff
CoreTiming: use named constant for ARM11 clock rate
parent
3c333c53
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/core/core_timing.cpp
+1
-1
1 addition, 1 deletion
src/core/core_timing.cpp
src/core/core_timing.h
+1
-0
1 addition, 0 deletions
src/core/core_timing.h
src/core/hle/service/hid/hid.cpp
+3
-3
3 additions, 3 deletions
src/core/hle/service/hid/hid.cpp
src/core/hw/gpu.cpp
+1
-1
1 addition, 1 deletion
src/core/hw/gpu.cpp
with
6 additions
and
5 deletions
src/core/core_timing.cpp
+
1
−
1
View file @
47960b06
...
...
@@ -13,7 +13,7 @@
#include
"core/core.h"
#include
"core/core_timing.h"
int
g_clock_rate_arm11
=
268123480
;
int
g_clock_rate_arm11
=
BASE_CLOCK_RATE_ARM11
;
// is this really necessary?
#define INITIAL_SLICE_LENGTH 20000
...
...
This diff is collapsed.
Click to expand it.
src/core/core_timing.h
+
1
−
0
View file @
47960b06
...
...
@@ -21,6 +21,7 @@
// inside callback:
// ScheduleEvent(periodInCycles - cycles_late, callback, "whatever")
constexpr
int
BASE_CLOCK_RATE_ARM11
=
268123480
;
extern
int
g_clock_rate_arm11
;
inline
s64
msToCycles
(
int
ms
)
{
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/service/hid/hid.cpp
+
3
−
3
View file @
47960b06
...
...
@@ -40,9 +40,9 @@ static int accelerometer_update_event;
static
int
gyroscope_update_event
;
// Updating period for each HID device. These empirical values are measured from a 11.2 3DS.
constexpr
u64
pad_update_ticks
=
268123480ull
/
234
;
constexpr
u64
accelerometer_update_ticks
=
268123480ull
/
104
;
constexpr
u64
gyroscope_update_ticks
=
268123480ull
/
101
;
constexpr
u64
pad_update_ticks
=
BASE_CLOCK_RATE_ARM11
/
234
;
constexpr
u64
accelerometer_update_ticks
=
BASE_CLOCK_RATE_ARM11
/
104
;
constexpr
u64
gyroscope_update_ticks
=
BASE_CLOCK_RATE_ARM11
/
101
;
static
PadState
GetCirclePadDirectionState
(
s16
circle_pad_x
,
s16
circle_pad_y
)
{
// 30 degree and 60 degree are angular thresholds for directions
...
...
This diff is collapsed.
Click to expand it.
src/core/hw/gpu.cpp
+
1
−
1
View file @
47960b06
...
...
@@ -32,7 +32,7 @@ namespace GPU {
Regs
g_regs
;
/// 268MHz CPU clocks / 60Hz frames per second
const
u64
frame_ticks
=
268123480ull
/
60
;
const
u64
frame_ticks
=
BASE_CLOCK_RATE_ARM11
/
60
;
/// Event id for CoreTiming
static
int
vblank_event
;
/// Total number of frames drawn
...
...
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