PDP-11/70 emulator
Find a file
2022-04-01 21:33:17 +02:00
ESP32 ESP32 compile fixes 2022-03-31 22:23:50 +02:00
tests tests 2022-03-20 11:53:57 +01:00
.gitignore meta 2022-03-21 21:08:47 +01:00
.lgtm.yml meta 2022-03-21 20:45:10 +01:00
btester.sh working on tester code 2022-03-13 11:53:32 +01:00
bus.cpp RTI/RTT cannot set all PSW bits (the upper 5) 2022-03-31 23:46:43 +02:00
bus.h make sure only the trap/interrupt vectors are retrieved from kernel space, not general reads 2022-03-27 04:29:36 +02:00
CMakeLists.txt RTI/RTT cannot set all PSW bits (the upper 5) 2022-03-31 23:46:43 +02:00
console.cpp ^l in ncurses fix 2022-03-31 19:41:26 +02:00
console.h ^l in ncurses fix 2022-03-31 19:41:26 +02:00
console_ncurses.cpp bold 2022-04-01 12:40:35 +02:00
console_ncurses.h ^l in ncurses fix 2022-03-31 19:41:26 +02:00
console_posix.cpp ^l in ncurses fix 2022-03-31 19:41:26 +02:00
console_posix.h ^l in ncurses fix 2022-03-31 19:41:26 +02:00
cpu.cpp fix for z-flag when doing byte / fix for c-flag for MUL 2022-04-01 21:33:17 +02:00
cpu.h RTI/RTT cannot set all PSW bits (the upper 5) 2022-03-31 23:46:43 +02:00
error.cpp ESP32 poc 2022-03-15 21:26:02 +01:00
error.h KEK 2022-03-01 13:57:57 +01:00
gcovr-json-diff.py coverage compare tool 2022-03-01 15:53:49 +01:00
gen.h ESP32 poc 2022-03-15 21:26:02 +01:00
LICENSE Create LICENSE 2022-03-19 16:03:00 +01:00
main.cpp clean-up 2022-03-31 22:27:59 +02:00
memory.cpp misc esp32 tweaks 2022-03-17 21:22:33 +01:00
memory.h allow memory > 16b 2022-03-25 23:08:54 +01:00
raw_to_simh_bin.cpp working on tester code 2022-03-13 11:53:32 +01:00
README.md meta / debug / micro-opt 2022-03-24 09:07:25 +01:00
rk05.cpp rk05: try not to crash when reading from invalid device-number 2022-04-01 17:44:45 +02:00
rk05.h multiple RK05 devices 2022-03-29 23:06:29 +02:00
rx02.cpp tty console 2022-03-13 11:09:45 +01:00
rx02.h tty console 2022-03-13 11:09:45 +01:00
terminal.cpp KEK 2022-03-01 13:57:57 +01:00
terminal.h KEK 2022-03-01 13:57:57 +01:00
tests.cpp RTI/RTT cannot set all PSW bits (the upper 5) 2022-03-31 23:46:43 +02:00
tests.h tty console 2022-03-13 11:09:45 +01:00
tm-11.cpp tty console 2022-03-13 11:09:45 +01:00
tm-11.h tty console 2022-03-13 11:09:45 +01:00
tty.cpp removed console telnet interface & adapted ESP32 console 2022-03-22 11:34:32 +01:00
tty.h removed console telnet interface & adapted ESP32 console 2022-03-22 11:34:32 +01:00
utils.cpp compile fix 2022-03-26 11:54:29 +01:00
utils.h panel 2022-03-25 21:19:33 +01:00

KEK Kek might (I work occasionally on it so don't hold your breath) become a DEC PDP-11 emulator capable of running UNIX-v7.

Run: make all to build.

Required:

  • libtirpc-dev
  • libncursesw5-dev

To run the test-cases:

./kek -m tc

... it should end in "ALL FINE".

To run a disk image:

./kek -R filename.rk -p offset 2> /dev/null

... where offset is a decimal(!) address to start (optional).

To run a tape image:

./kek -T filename.bin -p offset 2> /dev/null

... where offset is a decimal(!) address to start (optional).

Released under Apache License v2.0

Folkert van Heusden