Rename include folder to internal-include for easier destinguishing with the JabyEngine include folder

This commit is contained in:
Jaby
2023-03-26 14:19:48 +02:00
parent 9b27ad6200
commit 932824a68f
14 changed files with 12 additions and 12 deletions

View File

@@ -0,0 +1,35 @@
#ifndef BOOT_LOADER_HPP
#define BOOT_LOADER_HPP
#include <PSX/jabyengine.hpp>
namespace JabyEngine {
//boot namespace?
namespace boot {
namespace BootFile {
JabyEngine::NextRoutine setup();
}
namespace CD {
void setup();
}
namespace GPU {
void display_logo();
void setup();
}
namespace SPU {
void stop_voices();
void setup();
}
namespace Start {
JabyEngine::NextRoutine setup();
}
namespace Timer {
void setup();
}
}
}
#endif //!BOOT_LOADER_HPP