basic ppu background rendering

This commit is contained in:
Lauchmelder 2022-03-03 17:29:56 +01:00
parent f9f401c6c0
commit aef80e42fb
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
21 changed files with 468 additions and 41 deletions

View file

@ -2,13 +2,7 @@
#include <cstdint>
#include <vector>
struct Color
{
uint8_t r;
uint8_t g;
uint8_t b;
};
#include "../Types.hpp"
class Screen
{