typo bugfix

This commit is contained in:
Stanislav Shwartsman 2008-12-28 20:53:31 +00:00
parent 6367d3c5d2
commit 9d1a6a8bc2
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: config.cc,v 1.143 2008-12-28 20:49:03 sshwarts Exp $
// $Id: config.cc,v 1.144 2008-12-28 20:53:31 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002 MandrakeSoft S.A.
@ -2502,7 +2502,7 @@ static int parse_line_formatted(const char *context, int num_params, char *param
PARSE_ERR(("%s: cpu directive malformed.", context));
}
} else if (!strncmp(params[i], "msrs=", 5)) {
SIM->get_param_string(BXPN_CONFIGURABLE_MSRS_PATH)->set(&params[1][5]);
SIM->get_param_string(BXPN_CONFIGURABLE_MSRS_PATH)->set(&params[i][5]);
} else if (!strncmp(params[i], "vendor_string=", 14)) {
if (strlen(&params[i][14]) != BX_CPUID_VENDOR_LEN) {
PARSE_ERR(("%s: cpu directive malformed.", context));

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: main.cc,v 1.388 2008-12-28 20:49:03 sshwarts Exp $
// $Id: main.cc,v 1.389 2008-12-28 20:53:31 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002 MandrakeSoft S.A.
@ -993,9 +993,8 @@ void bx_init_hardware()
#if BX_CONFIGURE_MSRS
const char *msrs_file = SIM->get_param_string(BXPN_CONFIGURABLE_MSRS_PATH)->getptr();
if(strlen(msrs_file) > 0)
BX_INFO((" load configurable MSRs from file %s", msrs_file));
BX_INFO((" load configurable MSRs from file \"%s\"", msrs_file));
#endif
BX_INFO((" APIC support: %s",BX_SUPPORT_APIC?"yes":"no"));
BX_INFO(("CPU configuration"));
BX_INFO((" level: %d",BX_CPU_LEVEL));
#if BX_SUPPORT_SMP
@ -1003,6 +1002,7 @@ void bx_init_hardware()
#else
BX_INFO((" SMP support: no"));
#endif
BX_INFO((" APIC support: %s",BX_SUPPORT_APIC?"yes":"no"));
BX_INFO((" FPU support: %s",BX_SUPPORT_FPU?"yes":"no"));
BX_INFO((" MMX support: %s",BX_SUPPORT_MMX?"yes":"no"));
if (BX_SUPPORT_SSE == 0)