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