jumpfar.c - vx32 - Local 9vx git repository for patches.
(HTM) git clone git://r-36.net/vx32
(DIR) Log
(DIR) Files
(DIR) Refs
---
jumpfar.c (160B)
---
1 #include "rep.h"
2
3 int main()
4 {
5 for (int i = 0; i < 10000000; i++) {
6 REP100(asm volatile("jmp 1f; .p2align 12; 1:");) // too-aligned target
7 }
8 return 0;
9 }
10