Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenjc committed Aug 18, 2024
1 parent 81123c0 commit 605ac50
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
Binary file added docs/source/images/displayemu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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::
Expand Down
6 changes: 6 additions & 0 deletions docs/source/log.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion src/q1curses.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 605ac50

Please sign in to comment.