VM8086 is always ON

This commit is contained in:
Stanislav Shwartsman 2007-12-21 21:16:34 +00:00
parent cc4a068d7b
commit 7496ee7afa
2 changed files with 1 additions and 7 deletions

View File

@ -706,7 +706,6 @@ typedef
#define BX_SUPPORT_BUSMOUSE 0
#define BX_SUPPORT_V8086_MODE 1
#define BX_SUPPORT_ALIGNMENT_CHECK 0
#define BX_SUPPORT_FPU 0
#define BX_SUPPORT_MMX 0
@ -756,10 +755,6 @@ typedef
#error With CPU level < 5, you must disable v8086 mode extensions !
#endif
#if (BX_SUPPORT_VME && !BX_SUPPORT_V8086_MODE)
#error You must enable v8086 mode support to use v8086 mode extensions !
#endif
#if (BX_SUPPORT_MMX && BX_CPU_LEVEL < 5)
#error With CPU level < 5, you must disable MMX support !
#endif

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: main.cc,v 1.369 2007-12-09 18:36:00 sshwarts Exp $
// $Id: main.cc,v 1.370 2007-12-21 21:16:34 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002 MandrakeSoft S.A.
@ -990,7 +990,6 @@ void bx_init_hardware()
else
BX_INFO((" SSE support: %d",BX_SUPPORT_SSE));
BX_INFO((" CLFLUSH support: %s",BX_SUPPORT_CLFLUSH?"yes":"no"));
BX_INFO((" v8086 mode support: %s",BX_SUPPORT_V8086_MODE?"yes":"no"));
BX_INFO((" VME support: %s",BX_SUPPORT_VME?"yes":"no"));
BX_INFO((" 3dnow! support: %s",BX_SUPPORT_3DNOW?"yes":"no"));
BX_INFO((" PAE support: %s",BX_SUPPORT_PAE?"yes":"no"));