Introduce the JabyEngine namespace to all files

This commit is contained in:
Jaby
2022-12-23 21:18:25 +01:00
committed by Jaby
parent 52be17a891
commit 9d97cf746d
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