Files
lovedos/src/vga.h
2016-09-22 19:31:05 +01:00

21 lines
374 B
C

/**
* Copyright (c) 2016 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