Difference between revisions of "64 bit"

From Lazarus wiki
Jump to navigationJump to search
(New page: A ''64-bit'' processor is one that generally supports a word size of 2**64, where the constant "maxint" has the value 2**64-1, or 18,446,744,073,709,551,615. The signed version of thi...)
 
Line 9: Line 9:
 
==See Also==
 
==See Also==
 
* [[Writing portable code regarding the processor architecture]]
 
* [[Writing portable code regarding the processor architecture]]
 +
* [[Integer]]
 
* [[32 bit]]
 
* [[32 bit]]

Revision as of 21:57, 13 January 2012

A 64-bit processor is one that generally supports a word size of 2**64, where the constant "maxint" has the value 2**64-1, or 18,446,744,073,709,551,615. The signed version of this number can express a range of -18,446,744,073,709,551,615..0 and 0..18,446,744,073,709,551,615. The unsigned version of this number can express a range of 0..18,446,744,073,709,551,616. It also means that programs and data spaces can be much larger than on the older 32-bit and 16-bit machines.

Examples of 32-bit processors include

  • Newer versions of the X86 microcomputer (WINTEL architecture)

Currently, 64-bit processors (X86) are enhancements of 32-bit processors, and generally can run 32-bit and 16-bit applications. The reverse, however, is not true; 64-bit code cannot run on a machine smaller than 64 bits.


See Also