* fixed parameter of DebugWriteHexLongWord

git-svn-id: branches/wasm@48339 -
This commit is contained in:
nickysn 2021-01-23 05:00:21 +00:00
parent b35d3c5f3a
commit fb29456a0a

View File

@ -39,7 +39,7 @@ procedure DebugWriteChar(Ch: Char);
procedure DebugWriteHexDigit(d: Byte);
procedure DebugWriteHexByte(b: Byte);
procedure DebugWriteHexWord(w: Word);
procedure DebugWriteHexLongWord(lw: Word);
procedure DebugWriteHexLongWord(lw: LongWord);
implementation
@ -325,7 +325,7 @@ begin
DebugWriteHexByte(Byte(w));
end;
procedure DebugWriteHexLongWord(lw: Word);
procedure DebugWriteHexLongWord(lw: LongWord);
begin
DebugWriteHexWord(lw shr 16);
DebugWriteHexWord(Word(lw));