Skip to content

Commit

Permalink
extend write_unaligned [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
wsipak committed Oct 8, 2024
1 parent b756cc2 commit 37380d2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions testbench/tests/write_unaligned/write_unaligned.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,11 @@ int main () {
printf("jumping to 0xe000001\n");
func = 0xe000001;
func();
printf("jumping to 0x3fffffff\n");
func = 0x3fffffff;
func();
printf("jumping to 0xa001\n");
func = 0xa001;
func();
return 0;
}

0 comments on commit 37380d2

Please sign in to comment.