|
@@ -60,7 +60,7 @@ unit rgcpu;
|
|
helplist : tasmlist;
|
|
helplist : tasmlist;
|
|
hreg : tregister;
|
|
hreg : tregister;
|
|
begin
|
|
begin
|
|
- if (abs(spilltemp.offset)>32767) and (current_settings.cputype in (cpu_coldfire + [cpu_mc68000])) then
|
|
|
|
|
|
+ if (abs(spilltemp.offset)>32767) and not (CPUM68K_HAS_BASEDISP in cpu_capabilities[current_settings.cputype]) then
|
|
begin
|
|
begin
|
|
helplist:=tasmlist.create;
|
|
helplist:=tasmlist.create;
|
|
|
|
|
|
@@ -92,7 +92,7 @@ unit rgcpu;
|
|
helplist : tasmlist;
|
|
helplist : tasmlist;
|
|
hreg : tregister;
|
|
hreg : tregister;
|
|
begin
|
|
begin
|
|
- if (abs(spilltemp.offset)>32767) and (current_settings.cputype in (cpu_coldfire + [cpu_mc68000])) then
|
|
|
|
|
|
+ if (abs(spilltemp.offset)>32767) and not (CPUM68K_HAS_BASEDISP in cpu_capabilities[current_settings.cputype]) then
|
|
begin
|
|
begin
|
|
helplist:=tasmlist.create;
|
|
helplist:=tasmlist.create;
|
|
|
|
|
|
@@ -126,7 +126,7 @@ unit rgcpu;
|
|
begin
|
|
begin
|
|
result:=false;
|
|
result:=false;
|
|
opidx:=-1;
|
|
opidx:=-1;
|
|
- if (abs(spilltemp.offset)>32767) and (current_settings.cputype in cpu_coldfire) then
|
|
|
|
|
|
+ if (abs(spilltemp.offset)>32767) and not (CPUM68K_HAS_BASEDISP in cpu_capabilities[current_settings.cputype]) then
|
|
exit;
|
|
exit;
|
|
case instr.ops of
|
|
case instr.ops of
|
|
1:
|
|
1:
|