Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libnux
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
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Apps
BrainScaleS
libnux
Commits
b2ad270f
Commit
b2ad270f
authored
3 years ago
by
Philipp Spilger
Browse files
Options
Downloads
Patches
Plain Diff
Fix fpga memory scalar access test to use correct highest address
Change-Id: I24b22a11cbbb75363e9d0e1ccdc6519e23522608
parent
fca1ebfa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/vx/test_fpga_memory_scalar_access.cpp
+1
-1
1 addition, 1 deletion
test/vx/test_fpga_memory_scalar_access.cpp
with
1 addition
and
1 deletion
test/vx/test_fpga_memory_scalar_access.cpp
+
1
−
1
View file @
b2ad270f
...
...
@@ -25,7 +25,7 @@ void start(void)
test_write_read
<
uint8_t
>
(
123
);
test_write_read
<
uint16_t
>
(
12345
);
test_write_read
<
uint32_t
>
(
12345678
);
test_write_read
<
uint8_t
>
(
17
+
4
,
1
<<
29
);
// w/r highest extmem address
test_write_read
<
uint8_t
>
(
17
+
4
,
0x20000
-
1
);
// w/r highest extmem address
testcase_end
();
test_summary
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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