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