* fixed handling of 16-bit consts in the Z80 asm reader

git-svn-id: branches/z80@44807 -
This commit is contained in:
nickysn 2020-04-18 23:37:10 +00:00
parent a512b0cc99
commit 957eaf721b

View File

@ -54,6 +54,8 @@ type
OPR_CONSTANT : (val:longint);
{$elseif defined(i8086)}
OPR_CONSTANT : (val:longint);
{$elseif defined(Z80)}
OPR_CONSTANT : (val:longint);
{$else}
OPR_CONSTANT : (val:aint);
{$endif}