Skip to content
Snippets Groups Projects
Commit b2ad270f authored by Philipp Spilger's avatar Philipp Spilger
Browse files

Fix fpga memory scalar access test to use correct highest address

Change-Id: I24b22a11cbbb75363e9d0e1ccdc6519e23522608
parent fca1ebfa
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment