Create files and call hirachy for GPU

This commit is contained in:
jaby 2022-09-07 19:17:59 +02:00
parent f10c9edc21
commit 36eef616a2
3 changed files with 10 additions and 0 deletions

View File

@ -1,6 +1,10 @@
#ifndef BOOT_LOADER_HPP
#define BOOT_LOADER_HPP
namespace GPU {
void setup();
}
namespace SPU {
void setup();
}

View File

@ -0,0 +1,5 @@
namespace GPU {
void setup() {
}
}

View File

@ -5,6 +5,7 @@ namespace JabyEngine {
void start() {
printf("Hello Planschbecken\n");
GPU::setup();
SPU::setup();
printf("Setup done!\n");
}