added system.h to project

This commit is contained in:
ShizZy 2013-09-26 22:01:09 -04:00
parent 8bb0c457bc
commit c71868a6b1
5 changed files with 88 additions and 23 deletions

View file

@ -29,14 +29,26 @@ namespace Core {
/// Start the core
void Start() {
// TODO(ShizZy): ImplementMe
}
/// Run the core CPU loop
void RunLoop() {
// TODO(ShizZy): ImplementMe
}
/// Step the CPU one instruction
void SingleStep() {
}
/// Halt the core
void Halt() {
// TODO(ShizZy): ImplementMe
}
/// Kill the core
void Kill() {
}
/// Stop the core
void Stop() {
// TODO(ShizZy): ImplementMe
}
/// Initialize the core