1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
2015-10-15 19:45:29 +07:00

24 lines
275 B
C

/*
* 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;
}