evdecl void chars() { int8 i; i = 0x20; lp: putchar(i); i++; if (i != 0x7e) goto lp; return; } // バイトコードで書くと・・・ (00:reg0, 01:0x20, 02:0x7e, 03:$0, 04:0x01) [...] [17 01 00] [01] [17 00 03] [05 7000] [14 04 00] [21 02 00 00] [ret]