1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-07-06 23:29:01 +00:00
erc-c/include/apple2.h
2017-12-06 14:36:14 -06:00

16 lines
218 B
C

#ifndef _APPLE2_H_
#define _APPLE2_H_
#include "mos6502.h"
typedef struct {
/*
* The apple 2 hardware used an MOS-6502 processor.
*/
mos6502 *cpu;
} apple2;
extern apple2 *apple2_create();
#endif