diff options
author | Ian C <ianc@noddybox.co.uk> | 2007-03-12 00:59:51 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2007-03-12 00:59:51 +0000 |
commit | 7e2703a49de38100f9ee82042a744517fc7eb171 (patch) | |
tree | e76beb7f038e9ef51a30b5d10f5e4be7ffd73c46 /source/framebuffer.c | |
parent | eeef0966f0448d71e79ad43d53769afebd47b459 (diff) |
Altered some interfaces for the monitor.
Diffstat (limited to 'source/framebuffer.c')
-rw-r--r-- | source/framebuffer.c | 12 |
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; |