Questions tagged [zxspectrum]

The Sinclair ZX Spectrum was a popular 8-bit British microcomputer based on the Zilog Z80 CPU, which sold over five million units in the 1980s and was imitated by dozens of unofficial clones.

An HTML version of the original ZX Spectrum BASIC Manual is available here: http://www.worldofspectrum.org/ZXBasicManual/

See also:

18 questions
0
votes
1 answer

How to convert AY music file to FLAC preserving metadata in Linux?

I have a bunch of *.ay files having some metadata (artist, title and "misc"). How can I convert them to *.flac preserving that metadata?
Lavir the Whiolet
  • 1,006
  • 9
  • 18
0
votes
6 answers

FOR loop in C, condition part

Small question just to clarify. In ZX-Spectrum BASIC compiler there is FOR TO STEP NEXT looping, where TO is unconditional: 10 FOR i=1 TO 5 STEP 1 I've tried similar practice in C for (i=1; i==5; i++); and the of course loop does not work (== is…
Ilan
  • 401
  • 1
  • 8
  • 21
0
votes
2 answers

Is there a byte of ROM which is unused in normal operation?

Is there a byte of ROM which is unused in normal operation? I want to decode the address bus, pull ROMCS down and put data on the data bus for one address only. Is there an address in the ROM that is never used in normal operation of the ZX…
fadedbee
  • 42,671
  • 44
  • 178
  • 308
1
2