rpi4-osdev/part6-breakout/kernel.c

11 lines
113 B
C
Raw Normal View History

#include "io.h"
#include "fb.h"
#include "breakout.h"
void main()
{
fb_init();
game();
while (1);
}