rpi4-osdev/part12-wgt/samples/wgt01.c

17 lines
264 B
C
Raw Normal View History

#include "include/wgt.h"
// ######## WGT EXAMPLES ########
void wgt01()
{
vga256 (); /* Initializes WGT system */
wsetcolor (vgapal[15]);
wline (0, 0, 319, 199); /* Draw a line */
}
void main()
{
wgt01();
while (1);
}