Changeset 187 for branches/virtualcpu4/UOpcode.pas
- Timestamp:
- May 7, 2019, 5:58:20 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/virtualcpu4/UOpcode.pas
r185 r187 29 29 end; 30 30 31 function IntToHexEx(Value: Int64; Digits: ShortInt ; Prefix: string = ''): string; overload;32 function IntToHexEx(Value: QWord; Digits: ShortInt ; Prefix: string = ''): string; overload;31 function IntToHexEx(Value: Int64; Digits: ShortInt = -1; Prefix: string = ''): string; overload; 32 function IntToHexEx(Value: QWord; Digits: ShortInt = -1; Prefix: string = ''): string; overload; 33 33 34 34 … … 38 38 HexChars: array[0..15] of Char = '0123456789ABCDEF'; 39 39 40 function IntToHexEx(Value: Int64; Digits: ShortInt ; Prefix: string = ''): string;40 function IntToHexEx(Value: Int64; Digits: ShortInt = -1; Prefix: string = ''): string; 41 41 var 42 42 I: Integer; … … 63 63 end; 64 64 65 function IntToHexEx(Value: QWord; Digits: ShortInt ; Prefix: string = ''): string;65 function IntToHexEx(Value: QWord; Digits: ShortInt = -1; Prefix: string = ''): string; 66 66 var 67 67 I: Integer;
Note:
See TracChangeset
for help on using the changeset viewer.