diff --git a/bochs/cpu/bmi32.cc b/bochs/cpu/bmi32.cc index 2fe1538a8..9e173a53a 100644 --- a/bochs/cpu/bmi32.cc +++ b/bochs/cpu/bmi32.cc @@ -2,7 +2,7 @@ // $Id$ ///////////////////////////////////////////////////////////////////////// // -// Copyright (c) 2011 Stanislav Shwartsman +// Copyright (c) 2011-2012 Stanislav Shwartsman // Written by Stanislav Shwartsman [sshwarts at sourceforge net] // // This library is free software; you can redistribute it and/or diff --git a/bochs/cpu/bmi64.cc b/bochs/cpu/bmi64.cc index 117a5ba87..48fdf8837 100644 --- a/bochs/cpu/bmi64.cc +++ b/bochs/cpu/bmi64.cc @@ -2,7 +2,7 @@ // $Id$ ///////////////////////////////////////////////////////////////////////// // -// Copyright (c) 2011 Stanislav Shwartsman +// Copyright (c) 2011-2012 Stanislav Shwartsman // Written by Stanislav Shwartsman [sshwarts at sourceforge net] // // This library is free software; you can redistribute it and/or diff --git a/bochs/cpu/gather.cc b/bochs/cpu/gather.cc index ca1223b86..c6a439055 100644 --- a/bochs/cpu/gather.cc +++ b/bochs/cpu/gather.cc @@ -2,7 +2,7 @@ // $Id$ ///////////////////////////////////////////////////////////////////////// // -// Copyright (c) 2011 Stanislav Shwartsman +// Copyright (c) 2011-2012 Stanislav Shwartsman // Written by Stanislav Shwartsman [sshwarts at sourceforge net] // // This library is free software; you can redistribute it and/or diff --git a/bochs/cpu/smm.cc b/bochs/cpu/smm.cc index d046bff62..5681df58a 100644 --- a/bochs/cpu/smm.cc +++ b/bochs/cpu/smm.cc @@ -495,7 +495,7 @@ bx_bool BX_CPU_C::smram_restore_state(const Bit32u *saved_state) smm_state.ldtr.limit = SMRAM_FIELD(saved_state, SMRAM_FIELD_LDTR_LIMIT); smm_state.tr.selector_ar = SMRAM_FIELD(saved_state, SMRAM_FIELD_TR_SELECTOR_AR); - smm_state.tr.base = SMRAM_FIELD64(saved_state, SMRAM_FIELD_TR_BASE_HI32, SMRAM_FIELD_LDTR_BASE); + smm_state.tr.base = SMRAM_FIELD64(saved_state, SMRAM_FIELD_TR_BASE_HI32, SMRAM_FIELD_TR_BASE); smm_state.tr.limit = SMRAM_FIELD(saved_state, SMRAM_FIELD_TR_LIMIT); if (SMM_REVISION_ID & SMM_SMBASE_RELOCATION)