RolByte
Rotate bits of a byte value to the left
Declaration
Source position: systemh.inc line 1050
function RolByte(const AValue: Byte) : Byte;
function RolByte(const AValue: Byte; const Dist: Byte) : Byte;
Description
RolByte rotates the bits of the byte AValue with Dist positions to the left. If Dist is not specified, then 1 is assumed.
Errors
None.
See also
Name | Description |
---|---|
RolDWord | Rotate bits of a DWord (cardinal) value to the left |
RolQWord | Rotate bits of a QWord (64-bit) value to the left |
RolWord | Rotate bits of a word value to the left |
RorByte | Rotate bits of a byte value to the right |