Initialer Commit

This commit is contained in:
lux
2017-08-02 20:10:36 +02:00
commit 168a8b9bcf
7 changed files with 179 additions and 0 deletions

12
src/main.c Normal file
View File

@ -0,0 +1,12 @@
#include "toy.h"
#include "./debug/debug.h"
int main(int argc, char *argv[])
{
uint16_t ram[RAM_SIZE];
if(initialise_ram(ram,argc,argv)==-1) return 1;
makeHexDump(true,ram);
return 0;
}