[GPU] Start implementing commands

This commit is contained in:
wheremyfoodat
2022-09-21 03:15:43 +03:00
parent fef585ebb3
commit 8692e7fc6b
11 changed files with 132 additions and 21 deletions

10
include/gpu.hpp Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include "helpers.hpp"
class GPU {
public:
GPU() {}
void clearBuffer(u32 startAddress, u32 endAddress, u32 value, u32 control);
void reset();
};