diff options
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 |