2013-07-10 09:26:01 -04:00
|
|
|
/*******************************************************************************
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2014-02-12 16:35:00 -05:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2014.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of Sortix.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Sortix is free software: you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
version.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Sortix is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
details.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
Sortix. If not, see <http://www.gnu.org/licenses/>.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
x86/x86.cpp
|
|
|
|
CPU stuff for the x86 platform.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
*******************************************************************************/
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-05-12 18:23:24 -04:00
|
|
|
#include <sortix/kernel/cpu.h>
|
2013-10-26 20:42:10 -04:00
|
|
|
#include <sortix/kernel/kernel.h>
|
2012-03-21 19:52:29 -04:00
|
|
|
#include <sortix/kernel/log.h>
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2014-01-03 20:01:58 -05:00
|
|
|
namespace Sortix {
|
|
|
|
namespace X86 {
|
|
|
|
|
|
|
|
void InterruptRegisters::LogRegisters() const
|
2011-08-05 08:25:00 -04:00
|
|
|
{
|
2014-01-03 20:01:58 -05:00
|
|
|
Log::PrintF("[cr2=0x%zx,ds=0x%zx,edi=0x%zx,esi=0x%zx,ebp=0x%zx,"
|
2014-02-12 16:35:00 -05:00
|
|
|
"ebx=0x%zx,edx=0x%zx,ecx=0x%zx,eax=0x%zx,"
|
2014-01-03 20:01:58 -05:00
|
|
|
"int_no=0x%zx,err_code=0x%zx,eip=0x%zx,cs=0x%zx,"
|
2014-02-12 16:35:00 -05:00
|
|
|
"eflags=0x%zx,esp=0x%zx,ss=0x%zx]",
|
2014-01-03 20:01:58 -05:00
|
|
|
cr2, ds, edi, esi, ebp,
|
2014-02-12 16:35:00 -05:00
|
|
|
ebx, edx, ecx, eax,
|
2014-01-03 20:01:58 -05:00
|
|
|
int_no, err_code, eip, cs,
|
2014-02-12 16:35:00 -05:00
|
|
|
eflags, esp, ss);
|
2011-08-05 08:25:00 -04:00
|
|
|
}
|
2014-01-03 20:01:58 -05:00
|
|
|
|
|
|
|
} // namespace X86
|
|
|
|
} // namespace Sortix
|