Skip to content

Commit

Permalink
extend write_unaligned
Browse files Browse the repository at this point in the history
  • Loading branch information
wsipak authored and tmichalak committed Oct 9, 2024
1 parent c8357f0 commit 4be86d0
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 4be86d0

Please sign in to comment.