mirror of
https://github.com/nippur72/apple1-videocard-lib.git
synced 2024-11-17 14:11:16 +00:00
15 lines
433 B
C
15 lines
433 B
C
|
#include <tms9918.h>
|
||
|
|
||
|
void main(void) {
|
||
|
mulf_init();
|
||
|
tms_init_regs(SCREEN2_TABLE);
|
||
|
byte text_color = FG_BG(COLOR_WHITE,COLOR_BLACK);
|
||
|
tms_set_color(COLOR_BLACK);
|
||
|
screen2_init_bitmap(text_color);
|
||
|
//screen2_puts("*** P-LAB VIDEO CARD SYSTEM ***", 0, 0, text_color);
|
||
|
|
||
|
screen2_plot_mode = PLOT_MODE_SET;
|
||
|
// TODO: THIS DOES NOT WORK screen2_ellipse_rect(10, 10, 150, 100);
|
||
|
screen2_circle(128,76,30);
|
||
|
}
|