mirror of
https://github.com/pevans/erc-c.git
synced 2025-02-17 07:32:05 +00:00
Add apple2 reflect code
This commit is contained in:
parent
b7f2cabb3e
commit
fbee851daf
10
include/apple2.reflect.h
Normal file
10
include/apple2.reflect.h
Normal 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
|
@ -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
14
src/apple2.reflect.c
Normal file
@ -0,0 +1,14 @@
|
||||
/*
|
||||
* apple2.reflect.c
|
||||
*/
|
||||
|
||||
#include "apple2.reflect.h"
|
||||
|
||||
void
|
||||
apple2_reflect_init(vm_reflect *ref)
|
||||
{
|
||||
}
|
||||
|
||||
REFLECT(apple2_reflect_cpu_info)
|
||||
{
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user