Minor changes

This commit is contained in:
Loïc Guégan 2023-12-25 07:24:17 +01:00
parent 3924115080
commit 475996af26
9 changed files with 146 additions and 4 deletions

View file

@ -1,11 +1,17 @@
#include "screen.h"
#include "mem.h"
#include "vcpu.h"
int main(int argc, char *argv[])
{
// Initialize
MemInit();
MemLoadROM("../roms/2-ibm-logo.ch8");
ScreenInit(800,400);
VCPUInit();
ScreenSetPixel(0,1,1);
while (!WindowShouldClose()){