annotate tests/emu/test.c @ 33:02241452f397

8052 port code added to repo
author james <jb302@eecs.qmul.ac.uk>
date Tue, 15 Apr 2014 15:49:16 +0100
parents c0c2e99b6bb0
children
rev   line source
jb302@28 1 #include <stdio.h>
jb302@28 2
jb302@29 3 unsigned char regs[0x10];
jb302@29 4
jb302@28 5 void
jb302@28 6 main(void) {
jb302@30 7 unsigned char C = 0xFD;
jb302@30 8 printf("%i", (signed char)C);
jb302@28 9 }