Arduino emulation library for 8-bit microcomputers based on 6502, i8080 or z80
Go to file
Stephen Crane 5f8bb62648 add ram::page_size; sizes are unsigned 2021-02-17 14:49:40 +00:00
hw add ram::page_size; sizes are unsigned 2021-02-17 14:49:40 +00:00
CPU.h z80 updates 2019-03-25 16:12:08 +00:00
LICENSE Initial commit 2014-10-18 12:32:19 +01:00
README.md Update README.md 2018-11-05 09:30:57 +00:00
TinyFont.h PROGMEM 2019-03-03 14:37:44 +00:00
acia.cpp filer extends serialio 2019-02-11 18:28:38 +00:00
acia.h filer extends serialio 2019-02-11 18:28:38 +00:00
filer.h add checkpoint/restore for socket filer 2019-03-30 11:55:34 +00:00
flash_filer.cpp add checkpoint/restore for socket filer 2019-03-30 11:55:34 +00:00
flash_filer.h add checkpoint/restore for socket filer 2019-03-30 11:55:34 +00:00
hardware.cpp cleanup 2021-02-16 08:57:30 +00:00
hardware.h remove implicit hardware config 2020-07-08 14:34:12 +01:00
i8080.cpp irq is uint8_t 2019-03-03 14:38:11 +00:00
i8080.h irq is uint8_t 2019-03-03 14:38:11 +00:00
keyboard.h use stdint types 2018-08-14 06:10:37 +01:00
memory.cpp use stdint types 2018-08-14 06:10:37 +01:00
memory.h use stdint types 2018-08-14 06:10:37 +01:00
ports.h use stdint types 2018-08-14 06:10:37 +01:00
prom.h PROGMEM 2018-11-07 21:37:20 +00:00
ps2drv.cpp esp8266 wants ICACHE_RAM_ATTR 2020-07-08 14:33:52 +01:00
ps2drv.h add keypad keys 2016-01-29 22:24:05 +00:00
r65emu.h add checkpoint/restore for socket filer 2019-03-30 11:55:34 +00:00
r6502.cpp irq is uint8_t 2019-03-03 14:38:11 +00:00
r6502.h fix compiler warning 2019-06-06 09:19:55 +01:00
ram.h add ram::page_size; sizes are unsigned 2021-02-17 14:49:40 +00:00
serial_filer.cpp configure filers via ctor 2019-03-26 19:27:25 +00:00
serial_filer.h configure filers via ctor 2019-03-26 19:27:25 +00:00
serialio.h filer extends serialio 2019-02-11 18:28:38 +00:00
socket_filer.cpp add checkpoint/restore for socket filer 2019-03-30 11:55:34 +00:00
socket_filer.h add checkpoint/restore for socket filer 2019-03-30 11:55:34 +00:00
sound_dac.cpp warn if no sound configured 2018-11-25 13:21:05 +00:00
sound_dac.h rename sound -> sound_dac 2018-09-11 17:33:18 +01:00
sound_pwm.cpp warn if no sound configured 2018-11-25 13:21:05 +00:00
sound_pwm.h sound_pwm 2018-09-11 16:06:52 +01:00
spiram.cpp NO_CHECKPOINT flag 2019-02-24 11:50:10 +00:00
spiram.h use stdint types 2018-08-14 06:10:37 +01:00
tftdisplay.cpp adding compiler pragmas 2020-07-08 14:33:31 +01:00
tftdisplay.h TFTDisplay::drawString 2018-11-12 07:46:21 +00:00
timed.cpp esp8266 timer_create 2018-11-11 11:21:12 +00:00
timed.h esp8266 timer_create 2018-11-11 11:21:12 +00:00
z80.cpp z80 updates 2019-03-25 16:12:08 +00:00
z80.h z80 updates 2019-03-25 16:12:08 +00:00

README.md

r65emu

Emulation library for 8-bit microcomputers based on 6502, i8080 and z80.

Libraries:

Hardware:

  • A Stellaris Launchpad or ESP32-based board, e.g., Node32s,
  • An SD drive to store programs (for Stellarpad),
  • A 23k256 SPI RAM chip (for Stellarpad, optional),
  • A supported TFT screen, such as this one,
  • A PS/2 keyboard.

See hardware.h for wiring details and other options.