Registriert seit: 6. Feb 2008
838 Beiträge
|
AW: Von C nach Delphi
9. Mär 2021, 16:16
sowas rechnet man niemals mit Vorzeichen behafteten Typen!
(also cardinal statt integer)
x:cardinal;
BArray: Array[0..7] of Byte;
x := BArray[7];
x := x shl 8;
x := x or BArray[6];
x := x shl 8;
x := x or BArray[5];
x := x shl 8;
x := x or BArray[4];
|