1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00

Readying test_cpu

This commit is contained in:
Ross Wilson
2015-10-15 19:45:29 +07:00
parent 3bad73e242
commit b211efcb06
20 changed files with 957 additions and 19 deletions

23
vimlac/test_cpu.c Normal file
View File

@@ -0,0 +1,23 @@
/*
* Test the CPU implementation.
*/
#include <stdio.h>
#include <assert.h>
#include "imlac.h"
#include "cpu.h"
#include "memory.h"
#define trace(args) ;
int
main(int argc, char *argv[])
{
int errors = 0;
printf("%d errors found\n", errors);
return 0;
}