Use small value of MAX_DISP also for i8086 CPU

git-svn-id: trunk@39130 -
This commit is contained in:
pierre 2018-05-28 09:01:34 +00:00
parent 48f06bef12
commit 64dc9abbc2

View File

@ -26,6 +26,12 @@ const
mode with displacement. (CPU SPECIFIC) }
{$ifdef cpu68k}
{$define use_small}
{endif}
{$ifdef cpui8086}
{$define use_small}
{endif}
{$ifdef use_small}
MAX_DISP = 32767;
{$else}
MAX_DISP = 65535;