29 lines
522 B
C++
29 lines
522 B
C++
#ifndef BOOT_LOADER_HPP
|
|
#define BOOT_LOADER_HPP
|
|
#include "color_debug.hpp"
|
|
#include <PSX/jabyengine.hpp>
|
|
|
|
namespace JabyEngine {
|
|
namespace boot {
|
|
namespace CD {
|
|
void setup();
|
|
}
|
|
|
|
namespace GPU {
|
|
void display_logo();
|
|
void setup();
|
|
}
|
|
|
|
namespace SPU {
|
|
void stop_voices();
|
|
void setup();
|
|
}
|
|
|
|
namespace Timer {
|
|
void setup();
|
|
}
|
|
}
|
|
|
|
void __no_return run();
|
|
}
|
|
#endif //!BOOT_LOADER_HPP
|