mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-13 22:00:40 +00:00
10 lines
113 B
C
10 lines
113 B
C
#include "io.h"
|
|
#include "fb.h"
|
|
#include "breakout.h"
|
|
|
|
void main()
|
|
{
|
|
fb_init();
|
|
game();
|
|
while (1);
|
|
}
|