Changeset 185 for trunk/thune/eval.c
- Timestamp:
- 06/14/06 04:48:20 (3 years ago)
- Files:
-
- 1 modified
-
trunk/thune/eval.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/eval.c
r184 r185 2195 2195 } 2196 2196 } 2197 2198 2199 #if 0 2200 #define TICKS(x) __asm__ volatile (".byte 0x0f, 0x31" : "=A" (x)) 2201 2202 // ( -- str) 2203 UR_CALL( uc_ticks ) 2204 { 2205 uint64_t ticks; 2206 UR_CALL_UNUSED_TOS 2207 2208 UR_S_GROW; 2209 ur_initType(UR_TOS, UT_INT64); 2210 2211 TICKS(ticks); 2212 ur_int64(UR_TOS) = ticks; 2213 } 2214 #endif 2197 2215 2198 2216
