mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-25 12:39:20 +02:00
IDE: List different processors for i8086 target. Issue #39565.
(cherry picked from commit 3b0b5e67dd
)
This commit is contained in:
parent
cc470bc708
commit
68e3bfbfa7
@ -3785,6 +3785,21 @@ procedure GetTargetProcessors(const TargetCPU: string; aList: TStrings);
|
||||
aList.Add('PentiumM');
|
||||
end;
|
||||
|
||||
procedure Intel_i8086;
|
||||
begin
|
||||
aList.Add('8086');
|
||||
aList.Add('80186');
|
||||
aList.Add('80286');
|
||||
aList.Add('80386');
|
||||
aList.Add('80486');
|
||||
aList.Add('PENTIUM');
|
||||
aList.Add('PENTIUM2');
|
||||
aList.Add('PENTIUM3');
|
||||
aList.Add('PENTIUM4');
|
||||
aList.Add('PENTIUMM');
|
||||
|
||||
end;
|
||||
|
||||
procedure Intel_x86_64;
|
||||
begin
|
||||
aList.Add('ATHLON64');
|
||||
@ -3871,6 +3886,7 @@ begin
|
||||
'arm' : Arm;
|
||||
'avr' : AVR;
|
||||
'i386' : Intel_i386;
|
||||
'i8086' : Intel_i8086;
|
||||
'm68k' : M68k;
|
||||
'powerpc' : PowerPC;
|
||||
'powerpc64': PowerPC64;
|
||||
|
Loading…
Reference in New Issue
Block a user