Introduce the JabyEngine namespace to all files

This commit is contained in:
Jaby
2022-12-23 21:18:25 +01:00
parent c0f2669f8a
commit 82a3b1f74e
27 changed files with 1320 additions and 1282 deletions

View File

@@ -1,23 +1,24 @@
#ifndef BOOT_LOADER_HPP
#define BOOT_LOADER_HPP
#include <PSX/jabyengine.h>
#include <PSX/jabyengine.hpp>
namespace GPU {
void display_logo();
void setup();
namespace JabyEngine {
namespace GPU {
void display_logo();
void setup();
}
namespace SPU {
void stop_voices();
void setup();
}
namespace Setup {
JabyEngine::NextRoutine start();
}
namespace BootFile {
JabyEngine::NextRoutine setup();
}
}
namespace SPU {
void stop_voices();
void setup();
}
namespace Setup {
JabyEngine::NextRoutine start();
}
namespace BootFile {
JabyEngine::NextRoutine setup();
}
#endif //!BOOT_LOADER_HPP