Delphi 各类汇编位移

function ror(const Value: DWORD; ShiftValue: Byte): DWORD; overload; begin Result := (Value shl (8 * SizeOf(Value) – ShiftValue)) or (Value Shr ShiftValue); end; function ror(const Value: WORD; Shift
相关文章
相关标签/搜索