![]() |
CITS3002 Computer Networks |
← prev | next → | ![]() |
![]() |
![]() |
|||
The Differences in Data RepresentationMachines of different architectures represent data differently internally. Simple example: integers On Sun-SPARC or Motorola PowerPC architectures integers are stored as
![]() while on Intel x86 processors, integers are stored as
![]() So the integer 1 on a SPARC or PowerPC would be interpreted as the integer 16777216 (224) on the Intel. Other problems occur with respect to alignment and pointers:
CITS3002 Computer Networks, Lecture 10, Architecture independent applications, p14, 8th May 2024.
|