* fixed definition of the ALUSInt type on 16-bit CPUs

git-svn-id: trunk@30453 -
This commit is contained in:
nickysn 2015-04-05 21:47:32 +00:00
parent c59855b5e7
commit 28dc9fe68b

View File

@ -413,7 +413,7 @@ Type
ALUSInt = ShortInt;
ALUUInt = Byte;
{$elseif defined(CPUINT16)}
ALUSInt = ShortInt;
ALUSInt = SmallInt;
ALUUInt = Word;
{$elseif defined(CPUINT32)}
ALUSInt = Longint;