UK Vintage Radio Repair and Restoration Powered By Google Custom Search Vintage Radio and TV Service Data

Go Back   UK Vintage Radio Repair and Restoration Discussion Forum > Specific Vintage Equipment > Vintage Computers

Notices

Vintage Computers Any vintage computer systems, calculators, video games etc., but with an emphasis on 1980s and earlier equipment.

Reply
 
Thread Tools
Old 29th Sep 2023, 2:49 pm   #81
Realtime
Pentode
 
Join Date: Jan 2021
Location: Ashford, Kent, UK
Posts: 249
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Phil__G View Post
I'm thinking that surely NS wouldnt release something with bad code, this Telekit must have been working at some stage, so the eprom at the time contained working code - which appears now it might not.
Well judging by the not very professional hacking to the tracks on the rear of the board I'd say this was a prototype, not a released item (see the photo in #16). In which case NS may have pulled the plug at some point and it all got put in a box in the store room, with whatever proto-code happened to be in it at that time. I hope not, but I wouldn't be surprised.
Realtime is offline   Reply With Quote
Old 29th Sep 2023, 3:03 pm   #82
Realtime
Pentode
 
Join Date: Jan 2021
Location: Ashford, Kent, UK
Posts: 249
Default Re: Nat Semi SC/MP Low Cost Development System

Here's the first cut of a schematic for the TELEKIT. The zip file also contains datasheets for the main devices. I haven't bothered adding EPROM and RAM as yet, focusing on the display and key matrix initially.

No guarantee it's correct or complete, so please pick holes in it
Attached Files
File Type: zip TELEKIT DRAFT A Schematic 29_09_2023.zip (1.78 MB, 17 views)
Realtime is offline   Reply With Quote
Old 29th Sep 2023, 3:49 pm   #83
Timbucus
Octode
 
Join Date: Mar 2019
Location: Barry, Vale of Glamorgan, Wales, UK.
Posts: 1,348
Default Re: Nat Semi SC/MP Low Cost Development System

Well the original article suggested that they had been in use in Germany for training to reduce costs of Teletypes for students and implied around 25 were made. Maybe this was indeed the prototype - but, as Phil has shown bit rot can have a significant impact on this code.

Anyway if it helps the effort here is the promised scans from the Paper copy of ETI - it was hard to get the first page without bleed through due to the big advert - I put that as Page 3 on the PDF as I thought it quite ironic with what was being proposed on the next page
Attached Thumbnails
Click image for larger version

Name:	BYWOODtelekit1.jpg
Views:	34
Size:	73.9 KB
ID:	285760   Click image for larger version

Name:	BYWOODtelekit2.jpg
Views:	32
Size:	61.1 KB
ID:	285761  
Attached Files
File Type: pdf ETISep76scmp.pdf (3.98 MB, 28 views)
Timbucus is offline   Reply With Quote
Old 29th Sep 2023, 6:01 pm   #84
Phil__G
Heptode
 
Join Date: Mar 2011
Location: North Yorkshire, UK.
Posts: 909
Default Re: Nat Semi SC/MP Low Cost Development System

Odd that they have sense A as the inverse of sense B, but then this was a dedicated circuit, so if it makes the code easier, why not
I notice the serial in and out is straightforward, almost straight through connections between the LCDS serial port and the Sense and Flag pins of the Telekit's SC/MP, so we're looking for straightforward async serial I/O with no external shift-register jiggery pokery
Phil__G is offline   Reply With Quote
Old 29th Sep 2023, 6:46 pm   #85
Realtime
Pentode
 
Join Date: Jan 2021
Location: Ashford, Kent, UK
Posts: 249
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Timbucus View Post
the promised scans from the Paper copy of ETI
Thanks Tim - much easier on the eyes.

I've had to unplug the keypad flexi from the header. I really didn't want to as the gold contacts are lifting from the substrate, but it was in danger of getting damaged with the continued folding back and forth.

Now that it's off what should I expect from the keypad in terms of ohms reading? There are 10K pull downs on the receiving shift register so I guess less than 1K to pull the signal up. These are soft rubber buttons, not metallic click switches. Currently I'm detecting no closed contacts when pressing the keys.
Realtime is offline   Reply With Quote
Old 29th Sep 2023, 10:37 pm   #86
Phil__G
Heptode
 
Join Date: Mar 2011
Location: North Yorkshire, UK.
Posts: 909
Default Re: Nat Semi SC/MP Low Cost Development System

A few more comments, my understanding - usual caveat, may be wrong
Code:
; *** I really think this is a bad bit0, 06 CSA makes more sense ***
002D   07       CAS              ; I believe this is setting FLAG1 as an enable for the shift registers
;
; so.... lets say its a CSA...
002D   06       CSA              ; read status to get flags & sense A/B
;
002E   D4  FD   ANI $FD          ; 11111101 clear F1 (in A, not the actual flag yet)
0030   19       SIO              ; Shift E out on SOUT, shift SIN into E
0031   19       SIO              ; this shifts a byte of keypad sense data into E
0032   19       SIO              ; very quickly, SR is clocked by opcode read
0033   19       SIO              
0034   19       SIO
0035   19       SIO
0036   19       SIO
0037   19       SIO
0038   07       CAS             ; reset FLAG1 to disable shift registers
0039   C4  01   LDI $01         ; ready to set SOUT
003B   01       XAE		; now A=keypad sense
003C   19       SIO             ; set SOUT
003D   01       XAE		; now E=keypad sense
003E   C2  40   LD +$40(P2)     ; get count
0040   E4  09   XRI $09         ; count=9?
0042   9C  05   JNZ LAB003	; to $0049
0044   01       XAE		; now A=keypad sense
0045   CA  43   ST +$43(P2)	; store keypad data at $0244
0047   90  08   JMP LAB004      ; to $0051
.
.
.
LAB004:
0051   01       XAE		; keypad sense into E
;
LSB006:
0052   40       LDE		; and into A
0053   D4  1F   ANI $1F         ; isolate the 5 rows used
0055   9C  45   JNZ LAB007      ; jump if there was a keypress to $009C
;
LAB011:
0057   3F       XPPC P3		; call sub at 0x00CD?
Just wondering if anyone else suspects a few flipped bits?
Phil__G is offline   Reply With Quote
Old 30th Sep 2023, 9:46 am   #87
Realtime
Pentode
 
Join Date: Jan 2021
Location: Ashford, Kent, UK
Posts: 249
Default Re: Nat Semi SC/MP Low Cost Development System

That makes a lot of sense and Flag1 now gets cleared in a deterministic way. But what is setting Flag1, or am I missing something?

I think I need to create a "modern-ERPOM-to-MM5404-pinout" adapter to allow some of these bit-rot theories to be tested.

Here attached is v0.6 in SBASM format. I haven't made any changes over v0.5 other than to get it to assemble correctly. This of course could be run in MAME, so that may help in understanding the initial start up.
Attached Files
File Type: zip TELEKIT-06 SBASM.zip (10.8 KB, 12 views)
Realtime is offline   Reply With Quote
Old 30th Sep 2023, 7:17 pm   #88
Mark1960
Octode
 
Join Date: Mar 2020
Location: Kitchener, Ontario, Canada
Posts: 1,194
Default Re: Nat Semi SC/MP Low Cost Development System

You might need to try a lot of variations to check if the problem is due to bit rot. Maybe an MM5404 emulator using dual port ram would be better. You could even make one side compatible with issue 6 mk14 edge connector.
Mark1960 is offline   Reply With Quote
Old 30th Sep 2023, 7:18 pm   #89
circuitryboy
Pentode
 
circuitryboy's Avatar
 
Join Date: Jun 2012
Location: Bristol, UK.
Posts: 112
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Realtime View Post
But what is setting Flag1, or am I missing something?
I think the CAS at $002D is correct.
We are back with that 'LD +$47(P2)' variable at $002B.
This should hold the Flag bit-pattern to enable Keypad registers. (*)
The first CAS 'prepares' a keypad scan. Acc is immediately changed so that
second CAS will 'lock' Keypad as soon as E has rippled through. The $47(P2)
content isn't changed.
(*) It seems $47(P2) isn't set up with the right value when TELEKIT starts.
__________________
x^4 + x^2 + y^2 = 0
circuitryboy is offline   Reply With Quote
Old 1st Oct 2023, 5:16 pm   #90
ortek_service
Octode
 
ortek_service's Avatar
 
Join Date: May 2018
Location: Northampton, Northamptonshire, UK.
Posts: 1,194
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Timbucus View Post
>>
Anyway if it helps the effort here is the promised scans from the Paper copy of ETI - it was hard to get the first page without bleed through due to the big advert - I put that as Page 3 on the PDF as I thought it quite ironic with what was being proposed on the next page
Yes, thanks for uploading these.

Co-incidentally 'Electronics Tomorrow' was also the name of a one-off Winter 1977 special-edition of ETI, inspired by Star Wars that year.
- I re-discovered a copy of this I'd acquired a few years ago and had forgot about, whilst trying to see if I had an original Sep'76 copy of ETI.

In this, they tried (Tomorrow's World style) to predict the future in several decades time (They thought only by 1998, that 98% of Hi-Fi amps would be 'Digital' using Class-D PWM of ten's of MHz frequencies into a VFET O/P stage).
There's also an interview with Clive Sinclair, discussing what he might be selling in 1984 (Computers and a miniature VDU get a mention). You can read / download it all here: https://worldradiohistory.com/UK/Ele...inter-1977.pdf
ortek_service is offline   Reply With Quote
Old 1st Oct 2023, 5:37 pm   #91
ortek_service
Octode
 
ortek_service's Avatar
 
Join Date: May 2018
Location: Northampton, Northamptonshire, UK.
Posts: 1,194
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Mark1960 View Post
You might need to try a lot of variations to check if the problem is due to bit rot. Maybe an MM5404 emulator using dual port ram would be better. You could even make one side compatible with issue 6 mk14 edge connector.
Yes, could maybe use an EEPROM like 2816 (or a parallel FLASH IC) would be rather quicker to alter / erase.
- The W27C512 'EEPROM', can also be obtained very cheap

But an EPROM-Emulator would be easiest. And I believe Realtime has recently built a ChrisOddy replica Softy, then maybe fittingly that could be used as the Emulator (especially as it can substitute the SC/MP)
(Although the Softy-2, with its dedicated EPROM Emulator cable, may be even easier to connect to a (albeit 2716 etc pinout, so need some pin re-mapping for MM5204) EPROM socket. However, I think Chris is currently doing work on finishing his replica design of this S2 version, so not quite ready yet).
ortek_service is offline   Reply With Quote
Old 1st Oct 2023, 10:17 pm   #92
Realtime
Pentode
 
Join Date: Jan 2021
Location: Ashford, Kent, UK
Posts: 249
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Mark1960 View Post
You might need to try a lot of variations to check if the problem is due to bit rot. Maybe an MM5404 emulator using dual port ram would be better. You could even make one side compatible with issue 6 mk14 edge connector.
I really like the idea of a dualport ram eprom emulator. However I’d already built most of a CY7C291 (2Kx8) adapter for the MM5204 by the time I saw that suggestion.

I decided to get back to basics and write noddy bits of code to test each feature on board. I started by toggling the flag bits using the E register as a counter (no SRAM interaction). All good.
I then shifted data out of SOUT. Again as expected. I then repeated the flag test using SRAM for the counter. It failed to count. Same with shifting data from SRAM to SOUT, spurious results. SRAM is 2x MM2112 devices and It looks like the upper nibble is misbehaving. Tomorrow I’ll run the same bits of code on the mk14 to verify operation before replacing the SRAM. Don’t think I have 2112s but can cludge a 2114 in for now.
Realtime is offline   Reply With Quote
Old 2nd Oct 2023, 2:16 am   #93
ortek_service
Octode
 
ortek_service's Avatar
 
Join Date: May 2018
Location: Northampton, Northamptonshire, UK.
Posts: 1,194
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Realtime View Post
>>
>>
I really like the idea of a dualport ram eprom emulator. However I’d already built most of a CY7C291 (2Kx8) adapter for the MM5204 by the time I saw that suggestion.
>>
Yes, most EPROM-Emulators use a conventional SRAM, and multiplex access to host & target sides with tri-state buffers. But often needs 6 octal buffer IC's to do this, so a true dual-port RAM can be a bit simpler / more versatile, although the Cypress etc. ones can work out a bit expensive if bought new / maybe discontinued. However ChrisOddy did obtain some and produce a (custom for Acorn System backplane) design, here:
http://theoddys.com/acorn/replica_bo...ram_board.html

I don't recall seeing those CY7C291 2Kx8 35ns CMOS (E)PROM's in 0.3" wide DIL packages before, that are intended to replace high-speed bipolar PROM's. Which I assume you can still get (maybe NOS / used windowed ones) and are supported by some common IC Programmers.
- A pity Cypress didn't do 4bit ones that were pin-compatible with the smaller 74S587 etc PROM's, but might be useful for replacing character generator etc PROM's that do require the higher speed and smaller than the high-speed W27C512 0.6" wide DIL28 EEPROM.
ortek_service is offline   Reply With Quote
Old 2nd Oct 2023, 1:16 pm   #94
circuitryboy
Pentode
 
circuitryboy's Avatar
 
Join Date: Jun 2012
Location: Bristol, UK.
Posts: 112
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Realtime View Post
Just catching up on some previous messages.
Attachment 285726
Note the flexi part number. Is that the same as the one you have?
Attachment 285727
This might be of interest:
The NOVUS 4515 had a very similar keypad (maybe not the same matrix connections within).
I've found a pic of inside the case. Different flexi part number.
(Does the keypad unclip from the case-front?)
Attached Thumbnails
Click image for larger version

Name:	Novus_4515_front.jpg
Views:	19
Size:	27.8 KB
ID:	285866   Click image for larger version

Name:	Novus_4515_inside.jpg
Views:	27
Size:	69.7 KB
ID:	285867  
__________________
x^4 + x^2 + y^2 = 0
circuitryboy is offline   Reply With Quote
Old 2nd Oct 2023, 5:16 pm   #95
Realtime
Pentode
 
Join Date: Jan 2021
Location: Ashford, Kent, UK
Posts: 249
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by ortek_service View Post
I don't recall seeing those CY7C291 2Kx8 35ns CMOS (E)PROM's in 0.3" wide DIL packages before,
They're still available. I used them for the DM8678 character generator emulator for RealView, so have a couple to be experimenting with.

Quote:
Originally Posted by circuitryboy View Post
The NOVUS 4515 had a very similar keypad (maybe not the same matrix connections within). (Does the keypad unclip from the case-front?)
No the keypad seems to be hot welded as part of the surrounding frame from what I can see. I still can't work out why I'm seeing no switch activity on the keypad. Do the conductive rubber contacts perish over time?
Realtime is offline   Reply With Quote
Old 2nd Oct 2023, 5:35 pm   #96
Realtime
Pentode
 
Join Date: Jan 2021
Location: Ashford, Kent, UK
Posts: 249
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Realtime View Post
SRAM is 2x MM2112 devices and It looks like the upper nibble is misbehaving.
Click image for larger version

Name:	IMG_7428.jpg
Views:	16
Size:	85.2 KB
ID:	285873
The upper nibble SRAM has been replaced with a 2114 temporarily and I'm happy to say the routines using RAM are now operating correctly. So that's good. Unfortunately it doesn't take us any further with TELEKIT showing any signs of life.
I now know that IC52 is operating correctly as I can see the parallel inputs being shifted out to SIN on the processor (if I avtivate a row manually using a pull-up resistor). This also demonstrates FLAG1 and SOUT are operating correctly. See the attached video clip (yellow = Flag1, magenta = SOUT).
The next noddy piece of code will scan the display columns to test IC54 (column shift register) and IC53 the display driver chip.
Attached Files
File Type: zip SOUT.zip (647.3 KB, 8 views)
Realtime is offline   Reply With Quote
Old 2nd Oct 2023, 5:58 pm   #97
SiriusHardware
Dekatron
 
Join Date: Aug 2011
Location: Newcastle, Tyne and Wear, UK.
Posts: 11,082
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
I still can't work out why I'm seeing no switch activity on the keypad.
I'm sure the answer is no, but I will ask anyway: Are you by any chance using the 'continuity' range on a DMM to try to check the switches? Such meter ranges often only count resistances of up to one or two hundred ohms as 'continuous' and anything above that as 'open'. It's not unusual for 'rubber' key contacts to have a comparatively high 'on' resistance. It might be worth re-measuring them on a highish ohms range, in the unlikely event that you have not already tried that.
SiriusHardware is offline   Reply With Quote
Old 2nd Oct 2023, 7:10 pm   #98
circuitryboy
Pentode
 
circuitryboy's Avatar
 
Join Date: Jun 2012
Location: Bristol, UK.
Posts: 112
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Realtime View Post
These are soft rubber buttons, not metallic click switches. Currently I'm detecting no closed contacts when pressing the keys.
I've been thinking about those keypresses as well.
Original 6025 calculator has MM5762 chip. The datasheet says a bit about keypads. In the blue, below.
So original circuit would tolerate high resistance.

Also, I've still been pondering how the keys are shifted to 2nd character.
In the diagram below an extra mini-matrix and slide switch are shown for the programmable version. In the red.
I finally realised the slide switch has been relabelled for TELEKIT.
I have a horrid feeling that to enter say "TYPE" you must - slide to SHIFT, "T/D", "Y/I", slide to NORMAL, "@/P", "U/E" . And so on....
Attached Thumbnails
Click image for larger version

Name:	MM5762.page4.jpg
Views:	19
Size:	74.9 KB
ID:	285878  
__________________
x^4 + x^2 + y^2 = 0
circuitryboy is offline   Reply With Quote
Old 3rd Oct 2023, 12:02 am   #99
ortek_service
Octode
 
ortek_service's Avatar
 
Join Date: May 2018
Location: Northampton, Northamptonshire, UK.
Posts: 1,194
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Realtime View Post
Quote:
Originally Posted by ortek_service View Post
I don't recall seeing those CY7C291 2Kx8 35ns CMOS (E)PROM's in 0.3" wide DIL packages before,
They're still available. I used them for the DM8678 character generator emulator for RealView, so have a couple to be experimenting with.
>>
>>
Although it does appear they are now actually officially-obsolete (especially after Cypress was acquired by Infineon in 2020) - like all UV-erasable quartz-windowed packages? with all UV-EPROM's ceasing production many years ago (However some plastic-DIL packaged OTP-EPROM's were still being sold by Farnell etc a few years ago).
But it seems there's still many NOS / 'Used-Pulls' UV-EPROM's available, to allow everyone to still use those, like many of the vintage IC's (and even valves), people on here need.

Digi-Key do still list these and strangely say they are still active - but only sell them via their marketplace, from Rochester who specialise in buying-up discontinued devices. But Digikey say these aren't RoHS-compliant, which would probably date these stocks as pre-2005? And Rochester have a relatively-high MOQ, even though they are nearly £10 each.
But no doubt other online-marketplace sellers, will sell you one-off for less.

It's a pity Cypress didn't produce a FLASH etc version of these, which modern ones could have been in a quite small-package, as later 20ns speed versions of these, plus lower power than Bipolar-PROM's, could have been a quite-useful alternative to those -especially with a suitable adaptor board.

Last edited by ortek_service; 3rd Oct 2023 at 12:08 am.
ortek_service is offline   Reply With Quote
Old 3rd Oct 2023, 12:08 am   #100
ortek_service
Octode
 
ortek_service's Avatar
 
Join Date: May 2018
Location: Northampton, Northamptonshire, UK.
Posts: 1,194
Default Re: Nat Semi SC/MP Low Cost Development System

Quote:
Originally Posted by Realtime View Post
>>
>>
Quote:
Originally Posted by circuitryboy View Post
The NOVUS 4515 had a very similar keypad (maybe not the same matrix connections within). (Does the keypad unclip from the case-front?)
No the keypad seems to be hot welded as part of the surrounding frame from what I can see. I still can't work out why I'm seeing no switch activity on the keypad. Do the conductive rubber contacts perish over time?
I've not really seen the 'rubber' (usually silicone? - So may be better than natural rubber?) perish as such on these. But if they only have a conductive-coating on the 'tip' (rather than the 'black' rubber part being conductive throughout) then that could wear-off with a lot of use. The same if lower-conductivity carbon (as usual for most remote controls etc these days, rather than the originally more-common gold-plating) is used on the PCB-contact's mesh of fine tracks that are all bridged together by the conductive-rubber.

Many modern remote-control keypads actually often seem less-reliable than the older ones, with some often seemingly leaching a slimy insulating-grease from the rubber, onto the contacts (rather than this just being down to spillages into it). I found a 32" Samsung flat-screen LCD TV had been scrapped just because every-key on the remote had failed, after a few years. But I fixed it by just opening it up and cleaning the PCB & rubber buttons mat with some IPA - Although I've also found just some water is often enough. And is something I've frequently had to periodically do with various remote over the decades.
They are sometimes more-prone to packing-up, if not just for many months / years, and if cleaning doesn't resolve the problem then might need to resort to re-applying a conductive surface to the rubber - As Colin on here did with some Commodore PET keys that do use conductive-rubber onto PCB-contacts, rather than 'real' key-switches.
Although Casio etc calculator keys usually still work fine after > 40yrs"

The 'conductive-rubber' / any carbon-coating on PCB contacts, isn't that conductive, if the pull-up/down resistors on the keypad- matrix are sufficiently-high then should get a decent change in logic-level when these are pressed. But if these resistors are a bit on the low-side, then there may be more chance of having issues in a shorter period of time, when the pressed-contact resistances have risen a bit.
ortek_service is offline   Reply With Quote
Reply

Thread Tools



All times are GMT +1. The time now is 8:18 am.


All information and advice on this forum is subject to the WARNING AND DISCLAIMER located at https://www.vintage-radio.net/rules.html.
Failure to heed this warning may result in death or serious injury to yourself and/or others.


Powered by vBulletin®
Copyright ©2000 - 2023, vBulletin Solutions, Inc.
Copyright ©2002 - 2023, Paul Stenning.