Add boot namespace and adjust names

This commit is contained in:
Jaby
2023-01-12 22:02:11 +01:00
committed by Jaby
parent 954f660929
commit 25fc43064a
9 changed files with 199 additions and 175 deletions

View File

@@ -4,31 +4,32 @@
namespace JabyEngine {
//boot namespace?
namespace CD {
void setup();
}
namespace boot {
namespace BootFile {
JabyEngine::NextRoutine setup();
}
namespace GPU {
void display_logo();
void setup();
}
namespace CD {
void setup();
}
namespace SPU {
void stop_voices();
void setup();
}
namespace GPU {
void display_logo();
void setup();
}
namespace Setup {
JabyEngine::NextRoutine start();
}
namespace SPU {
void stop_voices();
void setup();
}
namespace BootFile {
JabyEngine::NextRoutine setup();
}
namespace Start {
JabyEngine::NextRoutine setup();
}
namespace Timer {
void setup();
namespace Timer {
void setup();
}
}
}
#endif //!BOOT_LOADER_HPP