mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-01 13:40:23 +02:00
FpDebug (pure): Fixed some constant values
git-svn-id: trunk@45233 -
This commit is contained in:
parent
86984bfb7e
commit
2293aef061
@ -1147,7 +1147,7 @@ const
|
||||
CPU_TYPE_MC680x0 = 6;
|
||||
CPU_TYPE_X86 = 7;
|
||||
CPU_TYPE_I386 = CPU_TYPE_X86;
|
||||
CPU_TYPE_X86_64 = CPU_TYPE_X86 and CPU_ARCH_ABI64;
|
||||
CPU_TYPE_X86_64 = CPU_TYPE_X86 or CPU_ARCH_ABI64;
|
||||
CPU_TYPE_MC98000 = 10;
|
||||
CPU_TYPE_HPPA = 11;
|
||||
CPU_TYPE_ARM = 12;
|
||||
@ -1155,7 +1155,7 @@ const
|
||||
CPU_TYPE_SPARC = 14;
|
||||
CPU_TYPE_I860 = 15;
|
||||
CPU_TYPE_POWERPC = 18;
|
||||
CPU_TYPE_POWERPC64 = CPU_TYPE_POWERPC and CPU_ARCH_ABI64;
|
||||
CPU_TYPE_POWERPC64 = CPU_TYPE_POWERPC or CPU_ARCH_ABI64;
|
||||
|
||||
type
|
||||
fat_header = record
|
||||
|
Loading…
Reference in New Issue
Block a user