- added an interface layer for ARM cores
- cleaned up core.cpp a bit
This commit is contained in:
parent
d601d2e696
commit
69223d007e
7 changed files with 213 additions and 77 deletions
|
@ -25,12 +25,18 @@
|
|||
#ifndef CORE_CORE_H_
|
||||
#define CORE_CORE_H_
|
||||
|
||||
#include "arm/armdefs.h"
|
||||
#include "arm/arm_interface.h"
|
||||
#include "arm/interpreter/armdefs.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
namespace Core {
|
||||
|
||||
extern ARM_Interface* g_app_core; ///< ARM11 application core
|
||||
extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/// Start the core
|
||||
void Start();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue