Files
gameboy/source/ppu.h
T

10 lines
161 B
C++

#pragma once
#include <stdint.h>
namespace ppu
{
void init();
void refresh(const uint32_t dt, const bool full=false);
const uint8_t *getpixels();
}