mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 19:17:51 +00:00
added system.h to project
This commit is contained in:
parent
8bb0c457bc
commit
c71868a6b1
5 changed files with 88 additions and 23 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue