1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-12-29 08:31:03 +00:00

One demo program for vera modes.

This commit is contained in:
FlightControl 2021-01-22 19:57:22 +01:00
parent f4fb0cf56b
commit 85e6be623d

View File

@ -12,12 +12,12 @@
void main() { void main() {
vera_layer_mode_text(1, 0x00000, 0x0f800, 64, 64, 8, 8, 4);
vera_display_set_scale_double();
vera_layer_show(1);
screenlayer(1);
do { do {
vera_layer_mode_text(1, 0x00000, 0x0f800, 64, 64, 8, 8, 4);
vera_display_set_scale_double();
vera_layer_show(1);
screenlayer(1);
textcolor(WHITE); textcolor(WHITE);
bgcolor(BLUE); bgcolor(BLUE);
clrscr(); clrscr();
@ -77,7 +77,7 @@ void main() {
//text_8_x_8_1BPP_256_color(); //text_8_x_8_1BPP_256_color();
break; break;
case 67: case 67:
//tile_8_x_8_2BPP_4_color(); tile_8_x_8_2BPP_4_color();
break; break;
case 68: case 68:
//tile_16_x_16_2BPP_4_color(); //tile_16_x_16_2BPP_4_color();
@ -108,7 +108,7 @@ void main() {
bgcolor(BLUE); bgcolor(BLUE);
clrscr(); clrscr();
} while( menu != 58 ); } while( menu != 57 );
} }