mirror of
https://github.com/jscrane/r65emu.git
synced 2024-12-21 12:29:51 +00:00
cleanups
This commit is contained in:
parent
30c049e91c
commit
69f7837ac3
2
CPU.h
2
CPU.h
@ -3,6 +3,8 @@
|
||||
|
||||
#undef PC
|
||||
|
||||
class Stream;
|
||||
|
||||
class CPU: public Checkpointable {
|
||||
public:
|
||||
virtual void run(unsigned instructions) =0;
|
||||
|
@ -1,7 +1,7 @@
|
||||
r65emu
|
||||
======
|
||||
|
||||
Emulation library for 6502-based 8-bit microcomputers.
|
||||
Emulation library for 8-bit microcomputers based on 6502, i8080 and z80.
|
||||
|
||||
Libraries:
|
||||
---------
|
||||
@ -22,4 +22,3 @@ Hardware:
|
||||
- A 23k256 SPI RAM chip (optional)
|
||||
|
||||
See _hardware.h_ for wiring details and other options.
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
#include <Energia.h>
|
||||
#include <stdio.h>
|
||||
#include <Stream.h>
|
||||
|
||||
#include "memory.h"
|
||||
#include "CPU.h"
|
||||
|
1
memory.h
1
memory.h
@ -2,6 +2,7 @@
|
||||
#define __MEMORY_H__
|
||||
|
||||
typedef unsigned char byte;
|
||||
typedef unsigned int word;
|
||||
|
||||
class Stream;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <Energia.h>
|
||||
#include <Arduino.h>
|
||||
#include "ps2drv.h"
|
||||
|
||||
#define BUFFER_SIZE 16
|
||||
|
Loading…
Reference in New Issue
Block a user