Also.. Nehmen wir mal dieses Zitat von Wikipedia:
Zitat:
Heutige PC-Systeme (x86-kompatible) verwenden Little-Endian.
dazu nehmen wir folgendes Programm:
Delphi-Quellcode:
program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils;
var Int: Word;
B: PByte;
begin
Int := $ABCD;
writeln('Wert: $ABCD');
write('Speicher: ');
B := @Int;
write('$',IntToHex(B^,2),', ');
inc(B);
write('$',IntToHex(B^,2));
readln;
end.
Und jetzt wissen wir was LittleEndian bedeutet.
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."