├── .editorconfig ├── .gitignore ├── .travis.deps ├── .travis.yml ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README.md ├── THANKS ├── autogen.sh ├── configure.ac ├── doc └── Makefile.am ├── doxygen.cfg ├── extras └── Doxyfile ├── m4 ├── Makefile.am ├── doxygen.m4 ├── libpcap.m4 ├── pthreads.m4 ├── sdl.m4 └── x11.m4 └── src ├── AliM1543C.cpp ├── AliM1543C.h ├── AliM1543C_ide.cpp ├── AliM1543C_ide.h ├── AliM1543C_usb.cpp ├── AliM1543C_usb.h ├── AlphaCPU.cpp ├── AlphaCPU.h ├── AlphaCPU_ieeefloat.cpp ├── AlphaCPU_vaxfloat.cpp ├── AlphaCPU_vmspal.cpp ├── AlphaSim.cpp ├── Cirrus.cpp ├── Cirrus.h ├── Configurator.cpp ├── Configurator.h ├── DEC21143.cpp ├── DEC21143.h ├── DEC21143_mii.h ├── DEC21143_tulipreg.h ├── DMA.cpp ├── DMA.h ├── DPR.cpp ├── DPR.h ├── Disk.cpp ├── Disk.h ├── DiskController.cpp ├── DiskController.h ├── DiskDevice.cpp ├── DiskDevice.h ├── DiskFile.cpp ├── DiskFile.h ├── DiskRam.cpp ├── DiskRam.h ├── Ethernet.cpp ├── Ethernet.h ├── Flash.cpp ├── Flash.h ├── FloppyController.cpp ├── FloppyController.h ├── FreeTextQuestion.h ├── Keyboard.cpp ├── Keyboard.h ├── Makefile.am ├── MultipleChoiceQuestion.h ├── NumberQuestion.h ├── OS_X ├── SDLMain.h └── SDLMain.m ├── PCIDevice.cpp ├── PCIDevice.h ├── Port80.cpp ├── Port80.h ├── Question.h ├── S3Trio64.cpp ├── S3Trio64.h ├── SCSIBus.cpp ├── SCSIBus.h ├── SCSIDevice.cpp ├── SCSIDevice.h ├── Serial.cpp ├── Serial.h ├── ShrinkingChoiceQuestion.h ├── StdAfx.cpp ├── StdAfx.h ├── Sym53C810.cpp ├── Sym53C810.h ├── Sym53C895.cpp ├── Sym53C895.h ├── System.cpp ├── System.h ├── SystemComponent.cpp ├── SystemComponent.h ├── TraceEngine.cpp ├── TraceEngine.h ├── VGA.cpp ├── VGA.h ├── base ├── AutoPtr.h ├── Bugcheck.cpp ├── Bugcheck.h ├── ErrorHandler.cpp ├── ErrorHandler.h ├── Event.cpp ├── Event.h ├── Event_POSIX.cpp ├── Event_POSIX.h ├── Event_WIN32.cpp ├── Event_WIN32.h ├── Exception.cpp ├── Exception.h ├── Foundation.h ├── Mutex.cpp ├── Mutex.h ├── Mutex_POSIX.cpp ├── Mutex_POSIX.h ├── Mutex_WIN32.cpp ├── Mutex_WIN32.h ├── NumberFormatter.cpp ├── NumberFormatter.h ├── Platform.h ├── Platform_POSIX.h ├── Platform_VMS.h ├── Platform_WIN32.h ├── Poco.h ├── RWLock.cpp ├── RWLock.h ├── RWLock_POSIX.cpp ├── RWLock_POSIX.h ├── RWLock_WIN32.cpp ├── RWLock_WIN32.h ├── RefCountedObject.cpp ├── RefCountedObject.h ├── Runnable.cpp ├── Runnable.h ├── ScopedLock.h ├── Semaphore.cpp ├── Semaphore.h ├── Semaphore_POSIX.cpp ├── Semaphore_POSIX.h ├── Semaphore_WIN32.cpp ├── Semaphore_WIN32.h ├── SignalHandler.cpp ├── SignalHandler.h ├── SingletonHolder.h ├── Thread.cpp ├── Thread.h ├── ThreadLocal.cpp ├── ThreadLocal.h ├── Thread_POSIX.cpp ├── Thread_POSIX.h ├── Thread_WIN32.cpp ├── Thread_WIN32.h ├── Timestamp.cpp ├── Timestamp.h ├── Types.h └── UnWindows.h ├── build_os_x_ppc └── Makefile.osx ├── build_win32_visual_studio_2005 ├── es40-cfg.vcproj └── es40.vcproj ├── build_win32_visual_studio_2008 ├── es40-cfg.vcproj └── es40.vcproj ├── build_win64_visual_studio_2008 ├── es40-cfg.vcproj └── es40.vcproj ├── config_debug.h ├── config_vms.h ├── config_win32.h ├── cpu_arith.h ├── cpu_bwx.h ├── cpu_control.h ├── cpu_debug.h ├── cpu_defs.h ├── cpu_fp_branch.h ├── cpu_fp_memory.h ├── cpu_fp_operate.h ├── cpu_logical.h ├── cpu_memory.h ├── cpu_misc.h ├── cpu_mvi.h ├── cpu_pal.h ├── cpu_vax.h ├── datatypes.h ├── dox.cpp ├── es40-cfg.cpp ├── es40.cfg ├── es40_debug.cpp ├── es40_debug.h ├── es40_endian.h ├── es40_float.h ├── gui ├── gui.cpp ├── gui.h ├── gui_win32.cpp ├── gui_win32_font.h ├── gui_x11.cpp ├── keymap.cpp ├── keymap.h ├── plugin.h ├── scancodes.cpp ├── scancodes.h ├── sdl.cpp ├── sdl_fonts.h ├── sdlkeys.h └── vga.h ├── lockstep.cpp ├── lockstep.h ├── make_vms.com ├── make_vms.sh └── telnet.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/.travis.deps -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/THANKS -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf -I m4 --install --verbose 4 | 5 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/doxygen.cfg -------------------------------------------------------------------------------- /extras/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/extras/Doxyfile -------------------------------------------------------------------------------- /m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/m4/Makefile.am -------------------------------------------------------------------------------- /m4/doxygen.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/m4/doxygen.m4 -------------------------------------------------------------------------------- /m4/libpcap.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/m4/libpcap.m4 -------------------------------------------------------------------------------- /m4/pthreads.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/m4/pthreads.m4 -------------------------------------------------------------------------------- /m4/sdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/m4/sdl.m4 -------------------------------------------------------------------------------- /m4/x11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/m4/x11.m4 -------------------------------------------------------------------------------- /src/AliM1543C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AliM1543C.cpp -------------------------------------------------------------------------------- /src/AliM1543C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AliM1543C.h -------------------------------------------------------------------------------- /src/AliM1543C_ide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AliM1543C_ide.cpp -------------------------------------------------------------------------------- /src/AliM1543C_ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AliM1543C_ide.h -------------------------------------------------------------------------------- /src/AliM1543C_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AliM1543C_usb.cpp -------------------------------------------------------------------------------- /src/AliM1543C_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AliM1543C_usb.h -------------------------------------------------------------------------------- /src/AlphaCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AlphaCPU.cpp -------------------------------------------------------------------------------- /src/AlphaCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AlphaCPU.h -------------------------------------------------------------------------------- /src/AlphaCPU_ieeefloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AlphaCPU_ieeefloat.cpp -------------------------------------------------------------------------------- /src/AlphaCPU_vaxfloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AlphaCPU_vaxfloat.cpp -------------------------------------------------------------------------------- /src/AlphaCPU_vmspal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AlphaCPU_vmspal.cpp -------------------------------------------------------------------------------- /src/AlphaSim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/AlphaSim.cpp -------------------------------------------------------------------------------- /src/Cirrus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Cirrus.cpp -------------------------------------------------------------------------------- /src/Cirrus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Cirrus.h -------------------------------------------------------------------------------- /src/Configurator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Configurator.cpp -------------------------------------------------------------------------------- /src/Configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Configurator.h -------------------------------------------------------------------------------- /src/DEC21143.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DEC21143.cpp -------------------------------------------------------------------------------- /src/DEC21143.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DEC21143.h -------------------------------------------------------------------------------- /src/DEC21143_mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DEC21143_mii.h -------------------------------------------------------------------------------- /src/DEC21143_tulipreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DEC21143_tulipreg.h -------------------------------------------------------------------------------- /src/DMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DMA.cpp -------------------------------------------------------------------------------- /src/DMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DMA.h -------------------------------------------------------------------------------- /src/DPR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DPR.cpp -------------------------------------------------------------------------------- /src/DPR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DPR.h -------------------------------------------------------------------------------- /src/Disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Disk.cpp -------------------------------------------------------------------------------- /src/Disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Disk.h -------------------------------------------------------------------------------- /src/DiskController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DiskController.cpp -------------------------------------------------------------------------------- /src/DiskController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DiskController.h -------------------------------------------------------------------------------- /src/DiskDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DiskDevice.cpp -------------------------------------------------------------------------------- /src/DiskDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DiskDevice.h -------------------------------------------------------------------------------- /src/DiskFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DiskFile.cpp -------------------------------------------------------------------------------- /src/DiskFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DiskFile.h -------------------------------------------------------------------------------- /src/DiskRam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DiskRam.cpp -------------------------------------------------------------------------------- /src/DiskRam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/DiskRam.h -------------------------------------------------------------------------------- /src/Ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Ethernet.cpp -------------------------------------------------------------------------------- /src/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Ethernet.h -------------------------------------------------------------------------------- /src/Flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Flash.cpp -------------------------------------------------------------------------------- /src/Flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Flash.h -------------------------------------------------------------------------------- /src/FloppyController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/FloppyController.cpp -------------------------------------------------------------------------------- /src/FloppyController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/FloppyController.h -------------------------------------------------------------------------------- /src/FreeTextQuestion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/FreeTextQuestion.h -------------------------------------------------------------------------------- /src/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Keyboard.cpp -------------------------------------------------------------------------------- /src/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Keyboard.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/MultipleChoiceQuestion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/MultipleChoiceQuestion.h -------------------------------------------------------------------------------- /src/NumberQuestion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/NumberQuestion.h -------------------------------------------------------------------------------- /src/OS_X/SDLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/OS_X/SDLMain.h -------------------------------------------------------------------------------- /src/OS_X/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/OS_X/SDLMain.m -------------------------------------------------------------------------------- /src/PCIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/PCIDevice.cpp -------------------------------------------------------------------------------- /src/PCIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/PCIDevice.h -------------------------------------------------------------------------------- /src/Port80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Port80.cpp -------------------------------------------------------------------------------- /src/Port80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Port80.h -------------------------------------------------------------------------------- /src/Question.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Question.h -------------------------------------------------------------------------------- /src/S3Trio64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/S3Trio64.cpp -------------------------------------------------------------------------------- /src/S3Trio64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/S3Trio64.h -------------------------------------------------------------------------------- /src/SCSIBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/SCSIBus.cpp -------------------------------------------------------------------------------- /src/SCSIBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/SCSIBus.h -------------------------------------------------------------------------------- /src/SCSIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/SCSIDevice.cpp -------------------------------------------------------------------------------- /src/SCSIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/SCSIDevice.h -------------------------------------------------------------------------------- /src/Serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Serial.cpp -------------------------------------------------------------------------------- /src/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Serial.h -------------------------------------------------------------------------------- /src/ShrinkingChoiceQuestion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/ShrinkingChoiceQuestion.h -------------------------------------------------------------------------------- /src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/StdAfx.cpp -------------------------------------------------------------------------------- /src/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/StdAfx.h -------------------------------------------------------------------------------- /src/Sym53C810.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Sym53C810.cpp -------------------------------------------------------------------------------- /src/Sym53C810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Sym53C810.h -------------------------------------------------------------------------------- /src/Sym53C895.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Sym53C895.cpp -------------------------------------------------------------------------------- /src/Sym53C895.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/Sym53C895.h -------------------------------------------------------------------------------- /src/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/System.cpp -------------------------------------------------------------------------------- /src/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/System.h -------------------------------------------------------------------------------- /src/SystemComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/SystemComponent.cpp -------------------------------------------------------------------------------- /src/SystemComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/SystemComponent.h -------------------------------------------------------------------------------- /src/TraceEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/TraceEngine.cpp -------------------------------------------------------------------------------- /src/TraceEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/TraceEngine.h -------------------------------------------------------------------------------- /src/VGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/VGA.cpp -------------------------------------------------------------------------------- /src/VGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/VGA.h -------------------------------------------------------------------------------- /src/base/AutoPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/AutoPtr.h -------------------------------------------------------------------------------- /src/base/Bugcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Bugcheck.cpp -------------------------------------------------------------------------------- /src/base/Bugcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Bugcheck.h -------------------------------------------------------------------------------- /src/base/ErrorHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/ErrorHandler.cpp -------------------------------------------------------------------------------- /src/base/ErrorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/ErrorHandler.h -------------------------------------------------------------------------------- /src/base/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Event.cpp -------------------------------------------------------------------------------- /src/base/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Event.h -------------------------------------------------------------------------------- /src/base/Event_POSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Event_POSIX.cpp -------------------------------------------------------------------------------- /src/base/Event_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Event_POSIX.h -------------------------------------------------------------------------------- /src/base/Event_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Event_WIN32.cpp -------------------------------------------------------------------------------- /src/base/Event_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Event_WIN32.h -------------------------------------------------------------------------------- /src/base/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Exception.cpp -------------------------------------------------------------------------------- /src/base/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Exception.h -------------------------------------------------------------------------------- /src/base/Foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Foundation.h -------------------------------------------------------------------------------- /src/base/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Mutex.cpp -------------------------------------------------------------------------------- /src/base/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Mutex.h -------------------------------------------------------------------------------- /src/base/Mutex_POSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Mutex_POSIX.cpp -------------------------------------------------------------------------------- /src/base/Mutex_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Mutex_POSIX.h -------------------------------------------------------------------------------- /src/base/Mutex_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Mutex_WIN32.cpp -------------------------------------------------------------------------------- /src/base/Mutex_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Mutex_WIN32.h -------------------------------------------------------------------------------- /src/base/NumberFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/NumberFormatter.cpp -------------------------------------------------------------------------------- /src/base/NumberFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/NumberFormatter.h -------------------------------------------------------------------------------- /src/base/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Platform.h -------------------------------------------------------------------------------- /src/base/Platform_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Platform_POSIX.h -------------------------------------------------------------------------------- /src/base/Platform_VMS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Platform_VMS.h -------------------------------------------------------------------------------- /src/base/Platform_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Platform_WIN32.h -------------------------------------------------------------------------------- /src/base/Poco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Poco.h -------------------------------------------------------------------------------- /src/base/RWLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/RWLock.cpp -------------------------------------------------------------------------------- /src/base/RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/RWLock.h -------------------------------------------------------------------------------- /src/base/RWLock_POSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/RWLock_POSIX.cpp -------------------------------------------------------------------------------- /src/base/RWLock_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/RWLock_POSIX.h -------------------------------------------------------------------------------- /src/base/RWLock_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/RWLock_WIN32.cpp -------------------------------------------------------------------------------- /src/base/RWLock_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/RWLock_WIN32.h -------------------------------------------------------------------------------- /src/base/RefCountedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/RefCountedObject.cpp -------------------------------------------------------------------------------- /src/base/RefCountedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/RefCountedObject.h -------------------------------------------------------------------------------- /src/base/Runnable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Runnable.cpp -------------------------------------------------------------------------------- /src/base/Runnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Runnable.h -------------------------------------------------------------------------------- /src/base/ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/ScopedLock.h -------------------------------------------------------------------------------- /src/base/Semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Semaphore.cpp -------------------------------------------------------------------------------- /src/base/Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Semaphore.h -------------------------------------------------------------------------------- /src/base/Semaphore_POSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Semaphore_POSIX.cpp -------------------------------------------------------------------------------- /src/base/Semaphore_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Semaphore_POSIX.h -------------------------------------------------------------------------------- /src/base/Semaphore_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Semaphore_WIN32.cpp -------------------------------------------------------------------------------- /src/base/Semaphore_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Semaphore_WIN32.h -------------------------------------------------------------------------------- /src/base/SignalHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/SignalHandler.cpp -------------------------------------------------------------------------------- /src/base/SignalHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/SignalHandler.h -------------------------------------------------------------------------------- /src/base/SingletonHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/SingletonHolder.h -------------------------------------------------------------------------------- /src/base/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Thread.cpp -------------------------------------------------------------------------------- /src/base/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Thread.h -------------------------------------------------------------------------------- /src/base/ThreadLocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/ThreadLocal.cpp -------------------------------------------------------------------------------- /src/base/ThreadLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/ThreadLocal.h -------------------------------------------------------------------------------- /src/base/Thread_POSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Thread_POSIX.cpp -------------------------------------------------------------------------------- /src/base/Thread_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Thread_POSIX.h -------------------------------------------------------------------------------- /src/base/Thread_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Thread_WIN32.cpp -------------------------------------------------------------------------------- /src/base/Thread_WIN32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Thread_WIN32.h -------------------------------------------------------------------------------- /src/base/Timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Timestamp.cpp -------------------------------------------------------------------------------- /src/base/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Timestamp.h -------------------------------------------------------------------------------- /src/base/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/Types.h -------------------------------------------------------------------------------- /src/base/UnWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/base/UnWindows.h -------------------------------------------------------------------------------- /src/build_os_x_ppc/Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/build_os_x_ppc/Makefile.osx -------------------------------------------------------------------------------- /src/build_win32_visual_studio_2005/es40-cfg.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/build_win32_visual_studio_2005/es40-cfg.vcproj -------------------------------------------------------------------------------- /src/build_win32_visual_studio_2005/es40.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/build_win32_visual_studio_2005/es40.vcproj -------------------------------------------------------------------------------- /src/build_win32_visual_studio_2008/es40-cfg.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/build_win32_visual_studio_2008/es40-cfg.vcproj -------------------------------------------------------------------------------- /src/build_win32_visual_studio_2008/es40.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/build_win32_visual_studio_2008/es40.vcproj -------------------------------------------------------------------------------- /src/build_win64_visual_studio_2008/es40-cfg.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/build_win64_visual_studio_2008/es40-cfg.vcproj -------------------------------------------------------------------------------- /src/build_win64_visual_studio_2008/es40.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/build_win64_visual_studio_2008/es40.vcproj -------------------------------------------------------------------------------- /src/config_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/config_debug.h -------------------------------------------------------------------------------- /src/config_vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/config_vms.h -------------------------------------------------------------------------------- /src/config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/config_win32.h -------------------------------------------------------------------------------- /src/cpu_arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_arith.h -------------------------------------------------------------------------------- /src/cpu_bwx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_bwx.h -------------------------------------------------------------------------------- /src/cpu_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_control.h -------------------------------------------------------------------------------- /src/cpu_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_debug.h -------------------------------------------------------------------------------- /src/cpu_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_defs.h -------------------------------------------------------------------------------- /src/cpu_fp_branch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_fp_branch.h -------------------------------------------------------------------------------- /src/cpu_fp_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_fp_memory.h -------------------------------------------------------------------------------- /src/cpu_fp_operate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_fp_operate.h -------------------------------------------------------------------------------- /src/cpu_logical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_logical.h -------------------------------------------------------------------------------- /src/cpu_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_memory.h -------------------------------------------------------------------------------- /src/cpu_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_misc.h -------------------------------------------------------------------------------- /src/cpu_mvi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_mvi.h -------------------------------------------------------------------------------- /src/cpu_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_pal.h -------------------------------------------------------------------------------- /src/cpu_vax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/cpu_vax.h -------------------------------------------------------------------------------- /src/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/datatypes.h -------------------------------------------------------------------------------- /src/dox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/dox.cpp -------------------------------------------------------------------------------- /src/es40-cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/es40-cfg.cpp -------------------------------------------------------------------------------- /src/es40.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/es40.cfg -------------------------------------------------------------------------------- /src/es40_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/es40_debug.cpp -------------------------------------------------------------------------------- /src/es40_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/es40_debug.h -------------------------------------------------------------------------------- /src/es40_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/es40_endian.h -------------------------------------------------------------------------------- /src/es40_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/es40_float.h -------------------------------------------------------------------------------- /src/gui/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/gui.cpp -------------------------------------------------------------------------------- /src/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/gui.h -------------------------------------------------------------------------------- /src/gui/gui_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/gui_win32.cpp -------------------------------------------------------------------------------- /src/gui/gui_win32_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/gui_win32_font.h -------------------------------------------------------------------------------- /src/gui/gui_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/gui_x11.cpp -------------------------------------------------------------------------------- /src/gui/keymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/keymap.cpp -------------------------------------------------------------------------------- /src/gui/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/keymap.h -------------------------------------------------------------------------------- /src/gui/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/plugin.h -------------------------------------------------------------------------------- /src/gui/scancodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/scancodes.cpp -------------------------------------------------------------------------------- /src/gui/scancodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/scancodes.h -------------------------------------------------------------------------------- /src/gui/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/sdl.cpp -------------------------------------------------------------------------------- /src/gui/sdl_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/sdl_fonts.h -------------------------------------------------------------------------------- /src/gui/sdlkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/sdlkeys.h -------------------------------------------------------------------------------- /src/gui/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/gui/vga.h -------------------------------------------------------------------------------- /src/lockstep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/lockstep.cpp -------------------------------------------------------------------------------- /src/lockstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/lockstep.h -------------------------------------------------------------------------------- /src/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/make_vms.com -------------------------------------------------------------------------------- /src/make_vms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/make_vms.sh -------------------------------------------------------------------------------- /src/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retroprom/es40/HEAD/src/telnet.h --------------------------------------------------------------------------------