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