summaryrefslogtreecommitdiff
path: root/source/framebuffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/framebuffer.c')
-rw-r--r--source/framebuffer.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/framebuffer.c b/source/framebuffer.c
index 6d16529..7507a52 100644
--- a/source/framebuffer.c
+++ b/source/framebuffer.c
@@ -187,6 +187,18 @@ void FB_Init(uint16 *vram, uint16 *palette)
}
+uint16 *FB_VRAM(void)
+{
+ return buff;
+}
+
+
+uint16 *FB_PALETTE(void)
+{
+ return pal;
+}
+
+
void FB_LoadASCIITiles(uint16 *tiles)
{
uint8 *src;