diff options
author | ShizZy <shizzy@6bit.net> | 2013-09-26 22:01:09 -0400 |
---|---|---|
committer | ShizZy <shizzy@6bit.net> | 2013-09-26 22:01:09 -0400 |
commit | c71868a6b192f6893f41afe415a2b11ba0edb403 (patch) | |
tree | f93e2314683b8bdbf2be22dfd1f231a02caede23 /src/core/src/core.cpp | |
parent | 8bb0c457bca110ca80fd3d09e78a794600a7221a (diff) |
added system.h to project
Diffstat (limited to 'src/core/src/core.cpp')
-rw-r--r-- | src/core/src/core.cpp | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/src/core/src/core.cpp b/src/core/src/core.cpp index 7f6bb2b0e8..a748ebbd7c 100644 --- a/src/core/src/core.cpp +++ b/src/core/src/core.cpp @@ -29,14 +29,26 @@ namespace Core { /// Start the core void Start() { + // TODO(ShizZy): ImplementMe } -/// Kill the core -void Kill() { +/// Run the core CPU loop +void RunLoop() { + // TODO(ShizZy): ImplementMe +} + +/// Step the CPU one instruction +void SingleStep() { } -/// Stop the core +/// Halt the core +void Halt() { + // TODO(ShizZy): ImplementMe +} + +/// Kill the core void Stop() { + // TODO(ShizZy): ImplementMe } /// Initialize the core |