August 1999
Intermediate to advanced
1488 pages
72h 53m
English
@_x86
The @_x86 variable is used in conditional compilation to determine if a Intel processor is being used. When the variable is not true, it is defined as NaN.
Listing 9.10 alerts the user when an Intel processor is used.
<script language="JScript">
<!-- Hide
@if (@_x86)
alert("You are using an Intel processor.");
@else
alert("You are NOT using an Intel processor.");
@end
//Hide End -->
</script>
|
Read now
Unlock full access