diff --git a/docs/source/images/displayemu.png b/docs/source/images/displayemu.png new file mode 100644 index 0000000..42e903e Binary files /dev/null and b/docs/source/images/displayemu.png differ diff --git a/docs/source/index.rst b/docs/source/index.rst index 350ccef..314fbb1 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -6,8 +6,7 @@ Documentation for the efforts of running the Q1-Lite z80 based software from ROMs. Quite a lot of progress since the beginning on 2024 07 03: Keyboard input, -display output, disk io. Can run the microcode programs into which PL/1 -was compiled. Almost have a working file system. +display output, disk io. Can load and run programs from (emulated) disk. .. figure:: images/Q1lite.png :width: 800 @@ -16,7 +15,7 @@ was compiled. Almost have a working file system. Q1 Lite, generation 3? -Help wanted, please get in touch ;-) +Collaborators wanted, please get in touch ;-) .. note:: diff --git a/docs/source/log.rst b/docs/source/log.rst index 7916ce7..ab7fde7 100644 --- a/docs/source/log.rst +++ b/docs/source/log.rst @@ -456,3 +456,9 @@ loading and running the 'SCR' program from (emulated) disk. Better display emulation. Had to resort to using UDP to send the display buffer to a **curses** based application. + +.. figure:: images/displayemu.png + :width: 800 + :align: center + + Left window: debug output and keyboard input. Right window display emulator. diff --git a/src/q1curses.py b/src/q1curses.py index 034ab71..fe67902 100644 --- a/src/q1curses.py +++ b/src/q1curses.py @@ -1,7 +1,7 @@ import curses import socket stdscr = curses.initscr() -#curses.resize_term(25, 41) +curses.resize_term(26, 42) UDP_IP = "127.0.0.1" UDP_PORT = 5005