1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-09-28 20:55:28 +00:00

Implement a dumb stub for cpu_info

This commit is contained in:
Peter Evans 2018-02-06 21:10:08 -06:00
parent 608b2259e5
commit 524412039a

View File

@ -3,6 +3,10 @@
*/ */
#include "apple2.reflect.h" #include "apple2.reflect.h"
#include "mos6502.h"
#define CPU(x) \
mos6502 *x = (mos6502 *)ref->cpu
void void
apple2_reflect_init(vm_reflect *ref) apple2_reflect_init(vm_reflect *ref)
@ -11,4 +15,7 @@ apple2_reflect_init(vm_reflect *ref)
REFLECT(apple2_reflect_cpu_info) REFLECT(apple2_reflect_cpu_info)
{ {
CPU(cpu);
printf("hey\n");
} }