Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
349B

  1. ( Z80 driver for TMS9918. Implements grid protocol. Requires
  2. TMS_CTLPORT, TMS_DATAPORT and ~FNT from the Font compiler at
  3. B520. Load range B470-472 )
  4. CODE _ctl ( a -- sends LSB then MSB )
  5. HL POP, chkPS,
  6. A L LDrr, TMS_CTLPORT OUTiA,
  7. A H LDrr, TMS_CTLPORT OUTiA,
  8. ;CODE
  9. CODE _data
  10. HL POP, chkPS,
  11. A L LDrr, TMS_DATAPORT OUTiA,
  12. ;CODE