Mirror of CollapseOS
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

12345678910111213
  1. ( kbd - implement (ps2kc) for SMS PS/2 adapter )
  2. : (ps2kcA) ( for port A )
  3. ( Before reading a character, we must first verify that there
  4. is something to read. When the adapter is finished filling its
  5. '164 up, it resets the latch, which output's is connected to
  6. TL. When the '164 is full, TL is low. Port A TL is bit 4 )
  7. 0xdc PC@ 0x10 AND IF 0 EXIT ( nothing ) THEN
  8. 0x3f PC@ DROP 0b11011101 ( Port A TH output, low ) 0x3f PC!
  9. 0xdc PC@ ( bit 3:0 go in 3:0 ) 0x0f AND ( n )
  10. 0b11111101 ( Port A TH output, high ) 0x3f PC!
  11. 0xdc PC@ ( bit 3:0 go in 7:4 ) 0x0f AND 4 LSHIFT OR ( n )
  12. ( Port A/B reset ) 0xff 0x3f PC!
  13. ;