Search found 3115 matches

by 1024MAK
Tue Feb 13, 2024 7:00 am
Forum: Hardware
Topic: Cant load anything
Replies: 41
Views: 1135

Re: Cant load anything

So, the reason for those test values is because we really want four different binary test patterns. With the RAM in a Spectrum, it's divided into the 'lower' RAM and the 'extension' or 'upper' RAM. The 'lower' RAM runs from 16384 (0x4000) to 32767 (0x7FFF). The 'upper' RAM runs from 32768 (0x8000) t...
by 1024MAK
Mon Feb 12, 2024 10:26 pm
Forum: Programming
Topic: That thing with the bottom two lines
Replies: 19
Views: 798

Re: That thing with the bottom two lines

It's a hang over from the ZX80 (which only had a 4K byte ROM). The ZX81 ROM built on the ZX80 ROM (now 8K bytes in size). Then the ZX Spectrum ROM is a development of the ZX81 ROM... Sinclair wanted maximum features for lowest cost (read keep something that worked, and make everything fit in only 16...
by 1024MAK
Mon Feb 12, 2024 9:02 pm
Forum: Hardware
Topic: Making a Scalextric lap counter
Replies: 20
Views: 583

Re: Making a Scalextric lap counter

Here's a circuit simulation. Because it does not include a potentiometer, I've used a fixed resistor. Also not included is a LDR, so I have used a clickable logic level input (swaps between L and H) a diode and a fixed resistor. This very crudly simulates day/night as if there was a LDR. https://www...
by 1024MAK
Mon Feb 12, 2024 8:30 pm
Forum: Programming
Topic: 128K beyond the 'Introduction' pamphlet
Replies: 13
Views: 477

Re: 128K beyond the 'Introduction' pamphlet

Let's play spot the difference! Front cover #1 https://i.postimg.cc/fJMrGVvq/IMG-7768.jpg Front cover #2 https://i.postimg.cc/KKrFcVRr/IMG-7769.jpg So which is for the +2 (grey) and which is for the +2A / +2B? Maybe a side view would help... https://i.postimg.cc/CBBNsykb/IMG-7775.jpg Okay, I'll open...
by 1024MAK
Mon Feb 12, 2024 8:03 pm
Forum: Programming
Topic: 128K beyond the 'Introduction' pamphlet
Replies: 13
Views: 477

Re: 128K beyond the 'Introduction' pamphlet

For the 128K, the +2 (grey) manual is useful. It includes a big, big chunk of the original ZX Spectrum rubber key manual. Not to be confused with the later manual for the +2A/+2B machines which are different again.

Mark
by 1024MAK
Mon Feb 12, 2024 7:44 pm
Forum: Hardware
Topic: Making a Scalextric lap counter
Replies: 20
Views: 583

Re: Making a Scalextric lap counter

Don't confuse the diode like effects when testing a bipolar transistor like a BC108 with how it actually works when used in an amplifier or switching circuit. The transistors operation is far more complex. In this circuit, the transistor is used as a common emitter amplifier. The 100kΩ potentiometer...
by 1024MAK
Mon Feb 12, 2024 6:00 pm
Forum: Hardware
Topic: Making a Scalextric lap counter
Replies: 20
Views: 583

Re: Making a Scalextric lap counter

Transistor lead outs are always viewed from below unless stated otherwise (this is opposite to IC/chip pin outs which are viewed from above). Yes, a BC108 is a NPN. And yes the emitter is the lead next to the tab. The middle lead is the base, leaving the remaining lead as the collector. The data-she...
by 1024MAK
Mon Feb 12, 2024 12:00 pm
Forum: Hardware
Topic: Cant load anything
Replies: 41
Views: 1135

Re: Cant load anything

If an admin or a mod is reading this, maybe update the title of the first post to better reflect the topic content?

Mark
by 1024MAK
Mon Feb 12, 2024 11:59 am
Forum: Hardware
Topic: Cant load anything
Replies: 41
Views: 1135

Re: Cant load anything

So, reading through the topic, the remaining issues are the RAM fault and no sound from the speaker, but you do get sound from the jack socket, is this from the Ear, the Mic or both?

Mark
by 1024MAK
Mon Feb 12, 2024 11:52 am
Forum: Hardware
Topic: Cant load anything
Replies: 41
Views: 1135

Re: Cant load anything

Got my hands on what I believe is a 16k zx , issue 4A As others have said, it's actually a 48K board (as manufactured) But the machine wont load any software. I get the usual blue to red background - when the signal starts i get an intermittent horizontal bar pattern , as if the sound jack was bein...
by 1024MAK
Sun Feb 11, 2024 3:41 pm
Forum: Programming
Topic: 128K beyond the 'Introduction' pamphlet
Replies: 13
Views: 477

Re: 128K beyond the 'Introduction' pamphlet

The RS232 port on the Interface 1 is also bit bashed. For both the 128K machines and the Interface 1, using the Z80 to carry out the parallel to serial (transmitting) or serial to parallel (receiving) means a relatively expensive UART chip is not needed. Sinclair wanting to keep costs low. I can't t...
by 1024MAK
Sun Feb 11, 2024 1:22 pm
Forum: Programming
Topic: 128K beyond the 'Introduction' pamphlet
Replies: 13
Views: 477

Re: 128K beyond the 'Introduction' pamphlet

Here is a web page that will help with the technical details. 128K BASIC has some commands, or changes in existing commands to access some of the extra hardware. The RS232, MIDI/Aux/Keypad ports are all " bit bashed ". The existing OUT command and IN function can access these. They are par...
by 1024MAK
Sat Feb 10, 2024 2:34 pm
Forum: Hardware
Topic: Making a Scalextric lap counter
Replies: 20
Views: 583

Re: Making a Scalextric lap counter

Well done 8-) :D :dance Don't worry about the breadboard circuitry looking messy, more about that later... I presume you mean this I/O board from Tynemouth Software on the Sell My Retro site? Tynemouth Software made a blog post about this I/O board here . I also have one of these boards. I don't hav...
by 1024MAK
Wed Feb 07, 2024 11:32 pm
Forum: Hardware
Topic: Contended memory with the Z80 in reset
Replies: 14
Views: 698

Re: Contended memory with the Z80 in reset

Don't know if these videos helps...





Mark
by 1024MAK
Wed Feb 07, 2024 10:42 pm
Forum: Music
Topic: The pips
Replies: 10
Views: 522

Re: The pips

From BASIC you can have either: BEEP .1,23.2 REM which has a frequency of 999.3Hz or BEEP .1,23.21 REM which has a frequency of 1001.0Hz The choice is yours.... Anyway, this is what I typed into my Speccy (issue 6A plus): 10 FOR a=1 TO 5: BEEP .1,23.2: PAUSE 45: NEXT a: BEEP .5,23.2 Mark PS I have a...
by 1024MAK
Wed Feb 07, 2024 4:50 pm
Forum: Hardware
Topic: UK 1400 PSU Recall
Replies: 12
Views: 348

Re: UK 1400 PSU Recall

Yeah just hold onto the barrel plug while running the hot taps and shower to get the room nice and steamy! ⚡ :lol: :lol: :lol: :lol: You'll forgive me (or maybe you won't), but I don't have any mains sockets (*) in the bathroom or shower room. And I get enough tingles from "modern" gadget...
by 1024MAK
Wed Feb 07, 2024 4:20 pm
Forum: Hardware
Topic: UK 1400 PSU Recall
Replies: 12
Views: 348

Re: UK 1400 PSU Recall

That figure was later updated to 28,000 by Your Computer, which also revealed that the fault was down to the 240V input track on the power pack's circuit board running far too close to the 6V output. Thank you flange :D So out of my list, it's this one: PCB tracks for the mains not sufficiently cle...
by 1024MAK
Wed Feb 07, 2024 4:09 pm
Forum: Hardware
Topic: UK 1400 PSU Recall
Replies: 12
Views: 348

Re: UK 1400 PSU Recall

Apparently the issue was this: So why the Recall? Some units were produced where the mains 240V could potentially become live on the outer metal positively charged part of the barrel connector – despite this supposedly being the low voltage DC connector. So, that narrows it down to these possibilit...
by 1024MAK
Wed Feb 07, 2024 2:49 pm
Forum: Hardware
Topic: UK 1400 PSU Recall
Replies: 12
Views: 348

Re: UK 1400 PSU Recall

Keep in mind that Sinclair did not make the PSUs, they contracted the manufacture out to other companies. Hence there at least three or more different styles (they all look the same on the outside as they all used the same case). I don't know which were affected, or what the fix was (I suspect the r...
by 1024MAK
Mon Feb 05, 2024 12:46 pm
Forum: Sinclair Miscellaneous
Topic: Tall tales about the spectrum
Replies: 39
Views: 1961

Re: Tall tales about the spectrum

PeteProdge wrote: Mon Feb 05, 2024 8:26 am Probably misattributed from its genuine case for the Commodore PET.
Some versions of the PET, not all.
Although NMOS 6502 (and the other microprocessors based on the same core) could be made to 'freeze' if it executed certain invalid instructions (12 exist).

Mark
by 1024MAK
Sat Feb 03, 2024 6:39 pm
Forum: Hardware
Topic: 48k Spectrum Replacement Lower Ram Options
Replies: 4
Views: 332

Re: 48k Spectrum Replacement Lower Ram Options

Hi :D Yes, the MB8118-10 DRAM chips will work. Pin 1 (VBB, -5V) will need isolating. Pin 8 which is VDD +12V on a 4116 will need changing to +5V for a MB8118-10. For a HM4864P-2, again these DRAM chips should work. Again, isolate pin 1. And pin 8 now needs a +5V supply. You can leave the existing +5...
by 1024MAK
Fri Feb 02, 2024 2:16 pm
Forum: Hardware
Topic: One spectrum better at loading than another?
Replies: 9
Views: 582

Re: One spectrum better at loading than another?

The colour and type/make/brand of the capacitors is not reliable indicators. Various were used during manufacturing and they are not matched to the board issue. The board colour (solder resist layer) is also not always helpful. Things to look for are: can you see a heatsink above the edge-connector?...
by 1024MAK
Thu Feb 01, 2024 8:07 pm
Forum: Graphics
Topic: Why yellow?
Replies: 26
Views: 1479

Re: Why yellow?

ZX Spectrum's palette is made of the primary colours of both systems, additive (Red, Green, Blue and White) and subtractive (Cyan, Magenta, Yellow and Black). It's all additive colour. Subtractive colour is for colour absorbing systems, like ink on paper. https://upload.wikimedia.org/wikipedia/comm...
by 1024MAK
Thu Feb 01, 2024 4:42 pm
Forum: Graphics
Topic: Why yellow?
Replies: 26
Views: 1479

Re: Why yellow?

Yello, 'cus it's the colour of the Sun and it brightens your day... :D

Reasons to be cheerful, part two.

Mark

First reason of course being that you got a Speccy :D
by 1024MAK
Thu Feb 01, 2024 1:24 pm
Forum: Hardware
Topic: Issue 3 upper RAM troubleshooting
Replies: 7
Views: 249

Re: Issue 3 upper RAM troubleshooting

No worries ;)

Mark