Files
super6502/sw/io.h
2022-03-05 22:34:34 -06:00

16 lines
140 B
C

#ifndef _IO_H
#define IO_H
#define IO_REMAP 0x7f00
enum io_regions {
io_region_de10lite = 0,
};
int io_remap(int region);
#endif