Просмотр исходного кода

+ added Test8086, Test8087, has_sse_support and has_mmx_support vars for i8086

git-svn-id: branches/i8086@23827 -
nickysn 12 лет назад
Родитель
Сommit
47ff0a520d
1 измененных файлов с 10 добавлено и 0 удалено
  1. 10 0
      rtl/inc/systemh.inc

+ 10 - 0
rtl/inc/systemh.inc

@@ -505,6 +505,16 @@ const
   has_sse_support : boolean = false;
   has_mmx_support : boolean = false;
 {$endif cpui386}
+{$ifdef cpui8086}
+  { will be detected at startup }
+  { 0=8086, 1=80286, 2=80386 }
+  Test8086 : byte = 0;
+  { Always 387 or newer. Emulated if needed. }
+  Test8087 : byte = 3;
+  { will be detected at startup }
+  has_sse_support : boolean = false;
+  has_mmx_support : boolean = false;
+{$endif cpui8086}
 {$ifdef cpum68k}
   Test68000 : byte = 0;      { Must be determined at startup for both }
   Test68881 : byte = 0;