[GPU/GSP] Get our first command list

This commit is contained in:
wheremyfoodat 2022-09-21 03:45:33 +03:00
parent 8692e7fc6b
commit 09000da701
4 changed files with 21 additions and 6 deletions

View file

@ -30,7 +30,7 @@ class Emulator {
public:
Emulator() : window(sf::VideoMode(width, height), "Alber", sf::Style::Default, sf::ContextSettings(0, 0, 0, 4, 3)),
kernel(cpu, memory, gpu), cpu(memory, kernel) {
kernel(cpu, memory, gpu), cpu(memory, kernel), gpu(memory) {
reset();
window.setActive(true);
}