mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-18 18:07:35 +00:00
27 lines
596 B
Plaintext
27 lines
596 B
Plaintext
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <cv.h>
|
|
#include <cvu.h>
|
|
|
|
#include "common.h"
|
|
//#link "common.c"
|
|
|
|
void setup_32_column_font() {
|
|
cv_set_image_table(IMAGE);
|
|
cvu_memtovmemcpy(PATTERN, (void *)(font_bitmap_0 - 16*8), 96*8);
|
|
cv_set_character_pattern_t(PATTERN);
|
|
cv_set_screen_mode(CV_SCREENMODE_STANDARD);
|
|
cv_set_color_table(COLOR);
|
|
cvu_vmemset(COLOR, 0x36, 8); // set color for chars 0-63
|
|
cvu_vmemset(COLOR+8, 0x06, 32-8); // set chars 63-255
|
|
}
|
|
|
|
void main() {
|
|
setup_32_column_font();
|
|
cv_set_screen_active(true);
|
|
cv_set_vint_handler(&vint_handler);
|
|
|
|
while(1);
|
|
}
|