Close

1787 Results for "%E3%80%8A %EC%98%88%EC%95%BD%EB%AC%B8%EC%9D%98 OIO%E2%89%A1%E2%91%A7%E2%91%A389%E2%89%A183O%E2%91%A5%E3%80%8B%EC%84%A0%EB%A6%89%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8%E3%89%B9%E3%83%99grace%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8%EF%BC%B3%EC%84%A0%EB%A6%89%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8%EC%84%A0%EB%A6%89%EB%A0%88%EA%B9%85%EC%8A%A4%D0%B5 %D1%8F%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8%EB%B9%84%EC%9A%A9superstition %EA%B0%95%EB%82%A8%EB%A0%88%EA%B9%85%EC%8A%A4%EB%A3%B8%E2%80%B2%EA%B0%95%EB%82%A8%EB%A0%88%EA%B9%85%EC%8A%A4%C2%A7%EF%BC%98fetch"

  • Plasma Effect for TMS9918

  • Plascii Petsma by Cruzer/Camelot has one of the nicest looking plasma effects I've seen for the C64. Since he included the source code, I was able to port it to the Z80 and TMS9918.    On top of the features in the original C64 version, I have...
  • Tablet Init

  • We have some bytes from the tablet. It's all pretty standard stuff with one exception.// unenc init a4 w f0 55 a4 w fb 00 Read ID Bytes a4 w fa a5 r ff 00 a4 20 00 13 // Enter enc mode a4 w f0 aa // write 16 byte key a4 w 40 e0 7d e0 7d e0 7d a4 w 46...
  • More Peripherals and some tablet bytes.

  • The amazon fairy dropped off a "NES Classic Controller" and a "Classic Pro"The classic pro comes up as a classic controller, The only difference is the analog R and L on the one I have are buttons and just return the max value when pushed. Although this...
  • Solar Water Heating Controller

  • An unexpected cold shower made it clear that I need a new controller for our solar warm water heating system ("split architecture" which is typical for installation in middle and northern Europe - thanks @Saabman for helping me understand that I had...
  • Z80 (CP/M) Writing to SD Card

  • Digging into SD card writes means shifting gears from the Boot BIOS source code since the Boot BIOS code only does reads. The CP/M BIOS code (CBIOS128.LST) which does the reads/writes after booting. Here's the BIOS code for writes to the SD Card: 0754...
  • More SD Card Write Details

  • Had to dig into the FPGA code for the SD card. Using Neal Crook's documentation of Grant Searle's version (longer pedigree on the page). The status register values are: // SD_Status bit values from Neal Crook's documentation of Grant's SD card // b7...
  • 20230219c -- ROM test file

  • While whizzing through the code trying to scrounge verified keyboard scan codes and flags, I found some some buried treasure in the form of an undocumented test routine.  It's not that exciting -- it just fills the current file with some sample...
  • Building a CP/M System Disk

  • Building a CP/M System Disk To avoid rewriting the assembler codes for ccp, bdos and cbios so that they can co-exist in the same file. I can append the i8hex files and remove the "end of file markers". To make the hex file more readable I have changed...