14 lines
197 B
C++
14 lines
197 B
C++
#ifndef BOOT_LOADER_HPP
|
|
#define BOOT_LOADER_HPP
|
|
|
|
namespace GPU {
|
|
void display_logo();
|
|
void setup();
|
|
}
|
|
|
|
namespace SPU {
|
|
void stop_voices();
|
|
void setup();
|
|
}
|
|
|
|
#endif //!BOOT_LOADER_HPP
|