Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Removed the handler for "freeze display on STOP" to match Ian Schofield's original "LED dithering" ILS-lite patch for the Pi Zero. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | pi-zero-ils |
Files: | files | file ages | folders |
SHA1: |
7d1cd49fe2eef375e6edf19d8f1754a2 |
User & Date: | tangent 2019-05-22 19:19:29.272 |
Context
2019-05-22
| ||
19:19 | Removed the handler for "freeze display on STOP" to match Ian Schofield's original "LED dithering" ILS-lite patch for the Pi Zero. Leaf check-in: 7d1cd49fe2 user: tangent tags: pi-zero-ils | |
11:58 | Untested application of Ian Schofield's LED dithering patch, which replaces the NLS mode with a different PWM-based incandescent lamp simulator scheme than either his original ILS or my "new ILS," intended to give much the same effect while using less host CPU power, so that it can run on a Pi Zero. This checkin is very different from the patch as posted on the mailing list, but I *think* it implements the same core algorithm. It's untested because while I have a PiDP-8/I front panel and a Pi Zero W here, I don't want to tear my PiDP-8/I apart to put the two together. That's and many other reasons are why this is on a branch. check-in: de6d1f5a43 user: tangent tags: pi-zero-ils | |
Changes
Changes to src/pidp8i/main.c.in.
︙ | ︙ | |||
402 403 404 405 406 407 408 | set_5_pidp8i_leds (pd, sSC); // Row 7: DF, IF, and Link. pd->curr[7] = 0; set_3_pidp8i_leds (pd, 9, sDF); set_3_pidp8i_leds (pd, 6, sIF); if (sLAC & 010000) set_pidp8i_led (pd, 7, 5); | < < < < < < < | 402 403 404 405 406 407 408 409 410 411 412 413 414 415 | set_5_pidp8i_leds (pd, sSC); // Row 7: DF, IF, and Link. pd->curr[7] = 0; set_3_pidp8i_leds (pd, 9, sDF); set_3_pidp8i_leds (pd, 6, sIF); if (sLAC & 010000) set_pidp8i_led (pd, 7, 5); } //// mount_usb_stick_file ////////////////////////////////////////////// // Search for a PDP-8 media image on a USB device mounted under /media // and attempt to ATTACH it to the simulator. |
︙ | ︙ |