* Set ControllerSupport to false for sparc/sparc64 and x86_64 CPUs.

This boolean must only be set to true if TControllerType is not simply (ct_none)
  * ppu.pas: Increment CurrentPPULongVersion constant as the above modification
    changes the number of fields of the TSettings record that is saved to
    PPU in ST_LOADSETTINGS field.

git-svn-id: trunk@42323 -
This commit is contained in:
pierre 2019-07-04 15:24:49 +00:00
parent 828a248287
commit d8b89432a2
4 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ const
CurrentPPUVersion = 207;
{ for any other changes to the ppu format, increase this version number
(it's a cardinal) }
CurrentPPULongVersion = 1;
CurrentPPULongVersion = 2;
{ unit flags }
uf_big_endian = $000004;

View File

@ -65,7 +65,7 @@ type
Const
{ Is there support for dealing with multiple microcontrollers available }
{ for this platform? }
ControllerSupport = true;
ControllerSupport = false;
{ We know that there are fields after sramsize
but we don't care about this warning }

View File

@ -63,7 +63,7 @@ type
Const
{ Is there support for dealing with multiple microcontrollers available }
{ for this platform? }
ControllerSupport = true;
ControllerSupport = false;
{ We know that there are fields after sramsize
but we don't care about this warning }

View File

@ -79,7 +79,7 @@ Type
Const
{ Is there support for dealing with multiple microcontrollers available }
{ for this platform? }
ControllerSupport = true;
ControllerSupport = false;
{ Size of native extended type }
extended_size = 10;
{ target cpu string (used by compiler options) }