mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-22 01:31:33 +00:00
10 lines
222 B
C
10 lines
222 B
C
/* file6502.h - File I/O Command Processor Header File */
|
|
|
|
#include "lib6502.h"
|
|
|
|
typedef uint8_t byte;
|
|
typedef uint16_t word;
|
|
|
|
extern void setdebug(int dbg);
|
|
extern int filecmd(M6502 *mpu, word addr, byte data);
|