├── .github └── workflows │ └── download-counter.yml ├── ADAMP_EMU.pro ├── ADAMP_EMU.pro.user ├── LICENSE.txt ├── README.md ├── app.rc ├── bridge.pri ├── bridge ├── disasm_bridge.cpp ├── disasm_bridge.h ├── input_bridge.c ├── input_bridge.h ├── psg_bridge.cpp ├── psg_bridge.h ├── video_bridge.c └── video_bridge.h ├── core.pri ├── icon.ico ├── scrcpp.pri ├── scrcpp ├── ADAMP.png ├── ADAMP_C1.gif ├── ADAMP_DEBUG.gif ├── ADAMP_EMU_HARDWARE_SNAP.png ├── ADAMP_EMU_HARDWARE_SNAP2.png ├── ADAMP_HARDWARE.png ├── ADAMP_Hardware.png ├── ADAMP_PRINTER.gif ├── AdamPpic1.png ├── AdamPpic2.png ├── AdamPpic3.png ├── Customfiledialog.h ├── Jaarstaat Ergo.pdf ├── adamp_logo.png ├── audio_sink.h ├── cartridgeinfowindow.cpp ├── cartridgeinfowindow.h ├── colecocontroller.cpp ├── colecocontroller.h ├── core_globals.cpp ├── customfiledialog.cpp ├── customfiledialog.h ├── customiconprovider.cpp ├── customiconprovider.h ├── debuggerwindow.cpp ├── debuggerwindow.h ├── gotoaddressdialog.cpp ├── gotoaddressdialog.h ├── hardwarewindow.cpp ├── hardwarewindow.h ├── images │ ├── ADAMP.png │ ├── Adam_PrinterBG.png │ ├── BREAK.png │ ├── CANCEL.png │ ├── CLOSE.png │ ├── Check.png │ ├── GOTO.png │ ├── Hardware.png │ ├── OK.png │ ├── REFRESH.png │ ├── RUN.png │ ├── SSTEP.png │ ├── STEP.png │ ├── adamp_logo.png │ ├── adamp_logo0.png │ ├── adamp_logo1.png │ ├── adamp_logo2.png │ ├── adamp_logo_power_adam_off.png │ ├── adamp_logo_power_adam_on.png │ ├── adamp_logo_reset_adam_blink.png │ ├── adamp_logo_reset_adam_off.png │ ├── adamp_logo_reset_adam_on.png │ ├── adamp_logo_reset_cartridge_blink.png │ ├── adamp_logo_reset_cartridge_off.png │ ├── adamp_logo_reset_cartridge_on.png │ ├── ctrl_roller.png │ ├── ctrl_sterring.png │ ├── ctrl_superaction.png │ ├── ddp.png │ ├── dsk.png │ ├── hw_f18a.png │ ├── hw_printer.png │ ├── hw_sgm.png │ ├── joypad.png │ ├── machine_adam.png │ ├── machine_adamp.png │ ├── machine_coleco.png │ ├── noCheck.png │ ├── roms.png │ ├── wallpaper_adam.png │ ├── wallpaper_adamp.png │ └── wallpaper_coleco.png ├── inputwidget.cpp ├── inputwidget.h ├── joypadwindow.cpp ├── joypadwindow.h ├── kbwidget.cpp ├── kbwidget.h ├── logoverlay.cpp ├── logoverlay.h ├── logwindow.cpp ├── logwindow.h ├── logwindow_oud.cpp ├── logwindow_oud.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── ntablewindow.cpp ├── ntablewindow.h ├── patternwindow.cpp ├── patternwindow.h ├── printwindow.cpp ├── printwindow.h ├── resources.qrc ├── screenwidget.cpp ├── screenwidget.h ├── setbreakpointdialog.cpp ├── setbreakpointdialog.h ├── settingswindow.cpp ├── settingswindow.h ├── simplejoystick.cpp ├── simplejoystick.h ├── soundmanager.cpp ├── soundmanager.h ├── spritewindow.cpp └── spritewindow.h ├── settings.ini ├── source ├── adamnet.cpp ├── adamnet.h ├── ay8910.c ├── ay8910.h ├── bios_adam.h ├── bios_coleco.h ├── c24xx.c ├── c24xx.h ├── coleco.cpp ├── coleco.h ├── coleco_emul.cpp ├── coleco_emul.h ├── colecoconfig.h ├── emu.h ├── f18a.cpp ├── f18a.h ├── f18agpu.cpp ├── f18agpu.h ├── fdidisk.c ├── fdidisk.h ├── keypad.cpp ├── keypad.h ├── sn76489.c ├── sn76489.h ├── tms9928a.c ├── tms9928a.h ├── utils.cpp ├── utils.h ├── vcl.h ├── z80.c └── z80.h └── stats ├── downloads.json └── downloads.txt /.github/workflows/download-counter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/.github/workflows/download-counter.yml -------------------------------------------------------------------------------- /ADAMP_EMU.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/ADAMP_EMU.pro -------------------------------------------------------------------------------- /ADAMP_EMU.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/ADAMP_EMU.pro.user -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/README.md -------------------------------------------------------------------------------- /app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/app.rc -------------------------------------------------------------------------------- /bridge.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/bridge.pri -------------------------------------------------------------------------------- /bridge/disasm_bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/bridge/disasm_bridge.cpp -------------------------------------------------------------------------------- /bridge/disasm_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/bridge/disasm_bridge.h -------------------------------------------------------------------------------- /bridge/input_bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/bridge/input_bridge.c -------------------------------------------------------------------------------- /bridge/input_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/bridge/input_bridge.h -------------------------------------------------------------------------------- /bridge/psg_bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/bridge/psg_bridge.cpp -------------------------------------------------------------------------------- /bridge/psg_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/bridge/psg_bridge.h -------------------------------------------------------------------------------- /bridge/video_bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/bridge/video_bridge.c -------------------------------------------------------------------------------- /bridge/video_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/bridge/video_bridge.h -------------------------------------------------------------------------------- /core.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/core.pri -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/icon.ico -------------------------------------------------------------------------------- /scrcpp.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp.pri -------------------------------------------------------------------------------- /scrcpp/ADAMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/ADAMP.png -------------------------------------------------------------------------------- /scrcpp/ADAMP_C1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/ADAMP_C1.gif -------------------------------------------------------------------------------- /scrcpp/ADAMP_DEBUG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/ADAMP_DEBUG.gif -------------------------------------------------------------------------------- /scrcpp/ADAMP_EMU_HARDWARE_SNAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/ADAMP_EMU_HARDWARE_SNAP.png -------------------------------------------------------------------------------- /scrcpp/ADAMP_EMU_HARDWARE_SNAP2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/ADAMP_EMU_HARDWARE_SNAP2.png -------------------------------------------------------------------------------- /scrcpp/ADAMP_HARDWARE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/ADAMP_HARDWARE.png -------------------------------------------------------------------------------- /scrcpp/ADAMP_Hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/ADAMP_Hardware.png -------------------------------------------------------------------------------- /scrcpp/ADAMP_PRINTER.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/ADAMP_PRINTER.gif -------------------------------------------------------------------------------- /scrcpp/AdamPpic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/AdamPpic1.png -------------------------------------------------------------------------------- /scrcpp/AdamPpic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/AdamPpic2.png -------------------------------------------------------------------------------- /scrcpp/AdamPpic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/AdamPpic3.png -------------------------------------------------------------------------------- /scrcpp/Customfiledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/Customfiledialog.h -------------------------------------------------------------------------------- /scrcpp/Jaarstaat Ergo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/Jaarstaat Ergo.pdf -------------------------------------------------------------------------------- /scrcpp/adamp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/adamp_logo.png -------------------------------------------------------------------------------- /scrcpp/audio_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/audio_sink.h -------------------------------------------------------------------------------- /scrcpp/cartridgeinfowindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/cartridgeinfowindow.cpp -------------------------------------------------------------------------------- /scrcpp/cartridgeinfowindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/cartridgeinfowindow.h -------------------------------------------------------------------------------- /scrcpp/colecocontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/colecocontroller.cpp -------------------------------------------------------------------------------- /scrcpp/colecocontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/colecocontroller.h -------------------------------------------------------------------------------- /scrcpp/core_globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/core_globals.cpp -------------------------------------------------------------------------------- /scrcpp/customfiledialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/customfiledialog.cpp -------------------------------------------------------------------------------- /scrcpp/customfiledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/customfiledialog.h -------------------------------------------------------------------------------- /scrcpp/customiconprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/customiconprovider.cpp -------------------------------------------------------------------------------- /scrcpp/customiconprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/customiconprovider.h -------------------------------------------------------------------------------- /scrcpp/debuggerwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/debuggerwindow.cpp -------------------------------------------------------------------------------- /scrcpp/debuggerwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/debuggerwindow.h -------------------------------------------------------------------------------- /scrcpp/gotoaddressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/gotoaddressdialog.cpp -------------------------------------------------------------------------------- /scrcpp/gotoaddressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/gotoaddressdialog.h -------------------------------------------------------------------------------- /scrcpp/hardwarewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/hardwarewindow.cpp -------------------------------------------------------------------------------- /scrcpp/hardwarewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/hardwarewindow.h -------------------------------------------------------------------------------- /scrcpp/images/ADAMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/ADAMP.png -------------------------------------------------------------------------------- /scrcpp/images/Adam_PrinterBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/Adam_PrinterBG.png -------------------------------------------------------------------------------- /scrcpp/images/BREAK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/BREAK.png -------------------------------------------------------------------------------- /scrcpp/images/CANCEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/CANCEL.png -------------------------------------------------------------------------------- /scrcpp/images/CLOSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/CLOSE.png -------------------------------------------------------------------------------- /scrcpp/images/Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/Check.png -------------------------------------------------------------------------------- /scrcpp/images/GOTO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/GOTO.png -------------------------------------------------------------------------------- /scrcpp/images/Hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/Hardware.png -------------------------------------------------------------------------------- /scrcpp/images/OK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/OK.png -------------------------------------------------------------------------------- /scrcpp/images/REFRESH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/REFRESH.png -------------------------------------------------------------------------------- /scrcpp/images/RUN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/RUN.png -------------------------------------------------------------------------------- /scrcpp/images/SSTEP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/SSTEP.png -------------------------------------------------------------------------------- /scrcpp/images/STEP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/STEP.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo0.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo1.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo2.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo_power_adam_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo_power_adam_off.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo_power_adam_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo_power_adam_on.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo_reset_adam_blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo_reset_adam_blink.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo_reset_adam_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo_reset_adam_off.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo_reset_adam_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo_reset_adam_on.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo_reset_cartridge_blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo_reset_cartridge_blink.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo_reset_cartridge_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo_reset_cartridge_off.png -------------------------------------------------------------------------------- /scrcpp/images/adamp_logo_reset_cartridge_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/adamp_logo_reset_cartridge_on.png -------------------------------------------------------------------------------- /scrcpp/images/ctrl_roller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/ctrl_roller.png -------------------------------------------------------------------------------- /scrcpp/images/ctrl_sterring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/ctrl_sterring.png -------------------------------------------------------------------------------- /scrcpp/images/ctrl_superaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/ctrl_superaction.png -------------------------------------------------------------------------------- /scrcpp/images/ddp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/ddp.png -------------------------------------------------------------------------------- /scrcpp/images/dsk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/dsk.png -------------------------------------------------------------------------------- /scrcpp/images/hw_f18a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/hw_f18a.png -------------------------------------------------------------------------------- /scrcpp/images/hw_printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/hw_printer.png -------------------------------------------------------------------------------- /scrcpp/images/hw_sgm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/hw_sgm.png -------------------------------------------------------------------------------- /scrcpp/images/joypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/joypad.png -------------------------------------------------------------------------------- /scrcpp/images/machine_adam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/machine_adam.png -------------------------------------------------------------------------------- /scrcpp/images/machine_adamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/machine_adamp.png -------------------------------------------------------------------------------- /scrcpp/images/machine_coleco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/machine_coleco.png -------------------------------------------------------------------------------- /scrcpp/images/noCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/noCheck.png -------------------------------------------------------------------------------- /scrcpp/images/roms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/roms.png -------------------------------------------------------------------------------- /scrcpp/images/wallpaper_adam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/wallpaper_adam.png -------------------------------------------------------------------------------- /scrcpp/images/wallpaper_adamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/wallpaper_adamp.png -------------------------------------------------------------------------------- /scrcpp/images/wallpaper_coleco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/images/wallpaper_coleco.png -------------------------------------------------------------------------------- /scrcpp/inputwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/inputwidget.cpp -------------------------------------------------------------------------------- /scrcpp/inputwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/inputwidget.h -------------------------------------------------------------------------------- /scrcpp/joypadwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/joypadwindow.cpp -------------------------------------------------------------------------------- /scrcpp/joypadwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/joypadwindow.h -------------------------------------------------------------------------------- /scrcpp/kbwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/kbwidget.cpp -------------------------------------------------------------------------------- /scrcpp/kbwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/kbwidget.h -------------------------------------------------------------------------------- /scrcpp/logoverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/logoverlay.cpp -------------------------------------------------------------------------------- /scrcpp/logoverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/logoverlay.h -------------------------------------------------------------------------------- /scrcpp/logwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/logwindow.cpp -------------------------------------------------------------------------------- /scrcpp/logwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/logwindow.h -------------------------------------------------------------------------------- /scrcpp/logwindow_oud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/logwindow_oud.cpp -------------------------------------------------------------------------------- /scrcpp/logwindow_oud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/logwindow_oud.h -------------------------------------------------------------------------------- /scrcpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/main.cpp -------------------------------------------------------------------------------- /scrcpp/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/mainwindow.cpp -------------------------------------------------------------------------------- /scrcpp/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/mainwindow.h -------------------------------------------------------------------------------- /scrcpp/ntablewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/ntablewindow.cpp -------------------------------------------------------------------------------- /scrcpp/ntablewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/ntablewindow.h -------------------------------------------------------------------------------- /scrcpp/patternwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/patternwindow.cpp -------------------------------------------------------------------------------- /scrcpp/patternwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/patternwindow.h -------------------------------------------------------------------------------- /scrcpp/printwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/printwindow.cpp -------------------------------------------------------------------------------- /scrcpp/printwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/printwindow.h -------------------------------------------------------------------------------- /scrcpp/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/resources.qrc -------------------------------------------------------------------------------- /scrcpp/screenwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/screenwidget.cpp -------------------------------------------------------------------------------- /scrcpp/screenwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/screenwidget.h -------------------------------------------------------------------------------- /scrcpp/setbreakpointdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/setbreakpointdialog.cpp -------------------------------------------------------------------------------- /scrcpp/setbreakpointdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/setbreakpointdialog.h -------------------------------------------------------------------------------- /scrcpp/settingswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/settingswindow.cpp -------------------------------------------------------------------------------- /scrcpp/settingswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/settingswindow.h -------------------------------------------------------------------------------- /scrcpp/simplejoystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/simplejoystick.cpp -------------------------------------------------------------------------------- /scrcpp/simplejoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/simplejoystick.h -------------------------------------------------------------------------------- /scrcpp/soundmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/soundmanager.cpp -------------------------------------------------------------------------------- /scrcpp/soundmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/soundmanager.h -------------------------------------------------------------------------------- /scrcpp/spritewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/spritewindow.cpp -------------------------------------------------------------------------------- /scrcpp/spritewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/scrcpp/spritewindow.h -------------------------------------------------------------------------------- /settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/settings.ini -------------------------------------------------------------------------------- /source/adamnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/adamnet.cpp -------------------------------------------------------------------------------- /source/adamnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/adamnet.h -------------------------------------------------------------------------------- /source/ay8910.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/ay8910.c -------------------------------------------------------------------------------- /source/ay8910.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/ay8910.h -------------------------------------------------------------------------------- /source/bios_adam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/bios_adam.h -------------------------------------------------------------------------------- /source/bios_coleco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/bios_coleco.h -------------------------------------------------------------------------------- /source/c24xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/c24xx.c -------------------------------------------------------------------------------- /source/c24xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/c24xx.h -------------------------------------------------------------------------------- /source/coleco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/coleco.cpp -------------------------------------------------------------------------------- /source/coleco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/coleco.h -------------------------------------------------------------------------------- /source/coleco_emul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/coleco_emul.cpp -------------------------------------------------------------------------------- /source/coleco_emul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/coleco_emul.h -------------------------------------------------------------------------------- /source/colecoconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/colecoconfig.h -------------------------------------------------------------------------------- /source/emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/emu.h -------------------------------------------------------------------------------- /source/f18a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/f18a.cpp -------------------------------------------------------------------------------- /source/f18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/f18a.h -------------------------------------------------------------------------------- /source/f18agpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/f18agpu.cpp -------------------------------------------------------------------------------- /source/f18agpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/f18agpu.h -------------------------------------------------------------------------------- /source/fdidisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/fdidisk.c -------------------------------------------------------------------------------- /source/fdidisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/fdidisk.h -------------------------------------------------------------------------------- /source/keypad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/keypad.cpp -------------------------------------------------------------------------------- /source/keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/keypad.h -------------------------------------------------------------------------------- /source/sn76489.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/sn76489.c -------------------------------------------------------------------------------- /source/sn76489.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/sn76489.h -------------------------------------------------------------------------------- /source/tms9928a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/tms9928a.c -------------------------------------------------------------------------------- /source/tms9928a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/tms9928a.h -------------------------------------------------------------------------------- /source/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/utils.cpp -------------------------------------------------------------------------------- /source/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/utils.h -------------------------------------------------------------------------------- /source/vcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/vcl.h -------------------------------------------------------------------------------- /source/z80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/z80.c -------------------------------------------------------------------------------- /source/z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/source/z80.h -------------------------------------------------------------------------------- /stats/downloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvdh1961/ADAMP/HEAD/stats/downloads.json -------------------------------------------------------------------------------- /stats/downloads.txt: -------------------------------------------------------------------------------- 1 | Display total downloads: 810 (updated: 2025-12-08T22:30:32Z) 2 | --------------------------------------------------------------------------------