Create files and call hirachy for GPU
This commit is contained in:
parent
a20201a1e0
commit
cb4f5bd084
|
@ -1,6 +1,10 @@
|
||||||
#ifndef BOOT_LOADER_HPP
|
#ifndef BOOT_LOADER_HPP
|
||||||
#define BOOT_LOADER_HPP
|
#define BOOT_LOADER_HPP
|
||||||
|
|
||||||
|
namespace GPU {
|
||||||
|
void setup();
|
||||||
|
}
|
||||||
|
|
||||||
namespace SPU {
|
namespace SPU {
|
||||||
void setup();
|
void setup();
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
namespace GPU {
|
||||||
|
void setup() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,6 +5,7 @@ namespace JabyEngine {
|
||||||
void start() {
|
void start() {
|
||||||
printf("Hello Planschbecken\n");
|
printf("Hello Planschbecken\n");
|
||||||
|
|
||||||
|
GPU::setup();
|
||||||
SPU::setup();
|
SPU::setup();
|
||||||
printf("Setup done!\n");
|
printf("Setup done!\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue