1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-07-04 12:29:31 +00:00
8bitworkshop/presets/coleco/text32.c

35 lines
814 B
C
Raw Normal View History

#include <cv.h>
#include <cvu.h>
2017-05-02 13:09:53 +00:00
2019-08-19 14:24:22 +00:00
#include "common.h"
//#link "common.c"
2017-05-02 13:09:53 +00:00
void setup_32_column_font() {
cv_set_screen_mode(CV_SCREENMODE_STANDARD);
cv_set_character_pattern_t(PATTERN);
2017-05-02 13:09:53 +00:00
cv_set_image_table(IMAGE);
cv_set_color_table(COLOR);
2018-11-21 17:54:59 +00:00
cv_set_sprite_pattern_table(SPRITE_PATTERNS);
cv_set_sprite_attribute_table(SPRITES);
cvu_vmemset(0, 0, 0x4000);
2019-08-19 14:24:22 +00:00
copy_default_character_set();
2017-05-02 13:09:53 +00:00
cvu_vmemset(COLOR, 0x36, 8); // set color for chars 0-63
cvu_vmemset(COLOR+8, 0x06, 32-8); // set chars 63-255
}
2018-11-21 17:54:59 +00:00
void show_text() {
cvu_vmemset(IMAGE, '.', 32*24);
2018-11-21 17:54:59 +00:00
cvu_memtovmemcpy(IMAGE + 1, "Hello Professor Falken", 22);
cv_set_screen_active(true);
2017-05-02 13:09:53 +00:00
}
void main() {
char i=0;
2017-05-02 13:09:53 +00:00
setup_32_column_font();
2018-11-21 17:54:59 +00:00
show_text();
while (1) {
2019-08-19 14:24:22 +00:00
cvu_vmemset(COLOR+8, i++, 4); // set color for chars 64-95
}
2017-05-02 13:09:53 +00:00
}