implemented DisplaySDL
This commit is contained in:
@@ -6,8 +6,10 @@
|
||||
|
||||
namespace chocochip8 {
|
||||
|
||||
using Scanline = std::bitset<128>;
|
||||
using Framebuffer = std::array<Scanline, 64>;
|
||||
constexpr size_t gcWidth = 128;
|
||||
constexpr size_t gcHeight = 64;
|
||||
using Scanline = std::bitset<gcWidth>;
|
||||
using Framebuffer = std::array<Scanline, gcHeight>;
|
||||
|
||||
enum class Key {
|
||||
KEY_0, KEY_1, KEY_2, KEY_3,
|
||||
|
||||
Reference in New Issue
Block a user