1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-25 12:29:34 +00:00

Add apple2 reflect code

This commit is contained in:
Peter Evans 2018-02-06 00:30:46 -06:00
parent b7f2cabb3e
commit fbee851daf
3 changed files with 25 additions and 0 deletions

10
include/apple2.reflect.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef _APPLE2_REFLECT_H_
#define _APPLE2_REFLECT_H_
#include "vm_reflect.h"
extern void apple2_reflect_init(vm_reflect *);
extern REFLECT(apple2_reflect_cpu_info);
#endif

View File

@ -9,6 +9,7 @@ set(erc_sources
apple2.kb.c
apple2.mem.c
apple2.pc.c
apple2.reflect.c
apple2.text.c
log.c
mos6502.c

14
src/apple2.reflect.c Normal file
View File

@ -0,0 +1,14 @@
/*
* apple2.reflect.c
*/
#include "apple2.reflect.h"
void
apple2_reflect_init(vm_reflect *ref)
{
}
REFLECT(apple2_reflect_cpu_info)
{
}