sms, minor fix for SC-3000
authorkub <derkub@gmail.com>
Thu, 6 Feb 2025 20:50:44 +0000 (21:50 +0100)
committerkub <derkub@gmail.com>
Fri, 7 Feb 2025 07:57:24 +0000 (08:57 +0100)
pico/sms.c

index 6833cfd..e12b913 100644 (file)
@@ -570,14 +570,18 @@ static void z80_sms_out(unsigned short a, unsigned char d)
       case 0xc1:
         if ((PicoIn.AHW & PAHW_SC) && (a & 0x2) && !(d & 0x80)) {
           // For SC-3000: 8255 control port. BSR mode used for printer and tape.
+          int b = (d>>1) & 0x7;
+          Pico.ms.io_sg &= ~(1<<b);
+          Pico.ms.io_sg |= ((d&1)<<b);
+
           // debug hack to copy printer data to stdout.
           // Printer data is sent at about 4.7 KBaud, 10 bits per character:
           // start=0, 8 data bits (LSB first), stop=1. data line is inverted.
           // no Baud tracking needed as all bits are sent through here.
           static int chr, bit;
-          if (d>>1 == 4) { // tape out
+          if (b == 4) { // tape out
             tape_write(z80_cyclesDone(), d&1);
-          } else if (d>>1 == 5) { // !data
+          } else if (b == 5) { // !data
             if (!bit) {
               if (d&1) // start bit
                 bit = 8;
@@ -588,7 +592,7 @@ static void z80_sms_out(unsigned short a, unsigned char d)
                 if (chr == 0xd) printf("\n");
               }
             }
-          } else if (d>>1 == 6 && !(d&1)) // !reset
+          } else if (b == 6 && !(d&1)) // !reset
             bit = 0;
         }
         break;