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
1a6cd7eb
There was an error fetching the commit references. Please try again later.
Commit
1a6cd7eb
authored
8 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
HLE: Fix recent DSP change for Visual Studio.
parent
8043a35c
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/audio_core/hle/dsp.h
+2
-4
2 additions, 4 deletions
src/audio_core/hle/dsp.h
with
2 additions
and
4 deletions
src/audio_core/hle/dsp.h
+
2
−
4
View file @
1a6cd7eb
...
@@ -33,13 +33,9 @@ namespace HLE {
...
@@ -33,13 +33,9 @@ namespace HLE {
// double-buffer. The frame counter is located as the very last u16 of each region and is incremented
// double-buffer. The frame counter is located as the very last u16 of each region and is incremented
// each audio tick.
// each audio tick.
struct
SharedMemory
;
constexpr
VAddr
region0_base
=
0x1FF50000
;
constexpr
VAddr
region0_base
=
0x1FF50000
;
constexpr
VAddr
region1_base
=
0x1FF70000
;
constexpr
VAddr
region1_base
=
0x1FF70000
;
extern
std
::
array
<
SharedMemory
,
2
>
g_regions
;
/**
/**
* The DSP is native 16-bit. The DSP also appears to be big-endian. When reading 32-bit numbers from
* The DSP is native 16-bit. The DSP also appears to be big-endian. When reading 32-bit numbers from
* its memory regions, the higher and lower 16-bit halves are swapped compared to the little-endian
* its memory regions, the higher and lower 16-bit halves are swapped compared to the little-endian
...
@@ -507,6 +503,8 @@ struct SharedMemory {
...
@@ -507,6 +503,8 @@ struct SharedMemory {
};
};
ASSERT_DSP_STRUCT
(
SharedMemory
,
0x8000
);
ASSERT_DSP_STRUCT
(
SharedMemory
,
0x8000
);
extern
std
::
array
<
SharedMemory
,
2
>
g_regions
;
// Structures must have an offset that is a multiple of two.
// Structures must have an offset that is a multiple of two.
static_assert
(
offsetof
(
SharedMemory
,
frame_counter
)
%
2
==
0
,
"Structures in DSP::HLE::SharedMemory must be 2-byte aligned"
);
static_assert
(
offsetof
(
SharedMemory
,
frame_counter
)
%
2
==
0
,
"Structures in DSP::HLE::SharedMemory must be 2-byte aligned"
);
static_assert
(
offsetof
(
SharedMemory
,
source_configurations
)
%
2
==
0
,
"Structures in DSP::HLE::SharedMemory must be 2-byte aligned"
);
static_assert
(
offsetof
(
SharedMemory
,
source_configurations
)
%
2
==
0
,
"Structures in DSP::HLE::SharedMemory must be 2-byte aligned"
);
...
...
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