Here’s a simple program to print the screen of the MC-10 with the TP-10. It will print text only. To use this program, simply enter it, together with your own BASIC program, or with another BASIC program. Insert a GOSUB 10000 at every place in the BASIC program where you want the screen printed. 10000 'MC10 16 BY 32 TEXT SCREEN DUMP 10010 FOR ZR=0 TO 16 10020 FOR ZC = 0 TO 31 10030 ZA=PEEK(16384+(ZR*32)+ZC) 10040 IF ZA >127 THEN ZA=32 10050 IF ZA<32 THEN ZA=ZA+32 10060 IF ZA >95 THEN ZA = ZA-64 10070 LPRINT CHR$(ZA); 10080 NEXT ZC 10090 LPRINT 10100 NEXT ZR 10110 RETURN