chip-8/src/main.c

19 lines
204 B
C
Raw Normal View History

2023-12-24 18:46:21 +01:00
#include "screen.h"
2023-12-24 17:56:58 +01:00
int main(int argc, char *argv[])
{
2023-12-24 18:20:11 +01:00
2023-12-24 18:53:13 +01:00
ScreenInit(800,400);
2023-12-24 18:20:11 +01:00
2023-12-24 19:59:31 +01:00
ScreenSetPixel(0,1,1);
2023-12-24 18:46:21 +01:00
while (!WindowShouldClose()){
ScreenUpdate();
}
ScreenFinish();
2023-12-24 17:56:58 +01:00
return 0;
}