Intial commit

This commit is contained in:
rxi
2014-06-13 21:01:19 +01:00
commit f34b4f8beb
87 changed files with 23049 additions and 0 deletions

20
src/vga.h Normal file
View File

@@ -0,0 +1,20 @@
/**
* Copyright (c) 2014 rxi
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the MIT license. See LICENSE for details.
*/
#ifndef VGA_H
#define VGA_H
#define VGA_WIDTH 320
#define VGA_HEIGHT 200
typedef unsigned char pixel_t;
void vga_init(void);
void vga_deinit(void);
void vga_update(pixel_t *buffer);
#endif