mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-20 04:29:13 +12:00
[GPU] Start implementing commands
This commit is contained in:
parent
fef585ebb3
commit
8692e7fc6b
11 changed files with 132 additions and 21 deletions
10
src/core/PICA/gpu.cpp
Normal file
10
src/core/PICA/gpu.cpp
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include "gpu.hpp"
|
||||
#include <cstdio>
|
||||
|
||||
void GPU::reset() {
|
||||
|
||||
}
|
||||
|
||||
void GPU::clearBuffer(u32 startAddress, u32 endAddress, u32 value, u32 control) {
|
||||
printf("GPU: Clear buffer\nStart: %08X End: %08X\nValue: %08X Control: %08X\n", startAddress, endAddress, value, control);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue