A latency-hating emulator of 8- and 16-bit platforms: the Acorn Electron, Amstrad CPC, Apple II/II+/IIe and early Macintosh, Atari 2600 and ST, ColecoVision, Enterprise 64/128, Commodore Vic-20 and Amiga, MSX 1, Oric 1/Atmos, Sega Master System, Sinclair
Go to file
Thomas Harte db25b4554b Introduces failing tests of the MSX static analyser. 2018-01-01 16:38:26 -05:00
ClockReceiver Enables AY output from the MSX. 2017-12-02 16:30:43 -05:00
Components Separates LowpassFilter and SampleSource. 2017-12-18 21:39:23 -05:00
Concurrency Separates the component parts of running an audio stream: task deferral, filtering and generation. 2017-12-17 21:26:06 -05:00
Configurable Formally standardises machine options and introduces a --help option for the SDL target. 2017-11-20 21:55:32 -05:00
Inputs Doubles down on <cX> over <X.h> for C includes, and usage of the namespace for those types and functions. 2017-11-11 15:28:40 -05:00
Machines Ensures typers terminate. 2017-12-30 13:46:30 -05:00
NumberTheory Converts all `uint8_t` and `uint16_t` casts to the functional style. 2017-10-21 21:50:53 -04:00
OSBindings Introduces failing tests of the MSX static analyser. 2018-01-01 16:38:26 -05:00
Outputs Introduces the MSX keyboard toggle sample source. 2017-12-19 21:08:10 -05:00
Processors Ensures proper Boolean startup values for IFF1 and IFF2. 2017-11-29 20:32:55 -05:00
READMEImages Bowdlerised images. 2017-09-22 23:02:17 -04:00
ROMImages Gives up on C-BIOS for a while, to get to an acceptable merge point. 2017-12-12 21:19:33 -05:00
SignalProcessing Doubles down on <cX> over <X.h> for C includes, and usage of the namespace for those types and functions. 2017-11-11 15:28:40 -05:00
StaticAnalyser Makes attempt to support 48kb ROMs. 2018-01-01 11:25:27 -05:00
Storage Imputes the alignment requirement for CAS headers. 2017-12-29 10:42:18 -05:00
.gitignore Introduces failing tests of the MSX static analyser. 2018-01-01 16:38:26 -05:00
.travis.yml It looks like spaces are automatically escaped (?) 2016-12-31 13:05:55 -05:00
BUILD.txt Corrected name of build tool. 2017-11-22 20:11:02 -05:00
LICENSE Initial commit 2015-07-16 19:46:52 -04:00
README.md Updated as per slow appropriate of the full 'Clock Signal'. 2017-11-22 20:44:06 -05:00

README.md

Clock Signal

Clock Signal ('CLK') is an emulator for tourists that seeks to be invisible. Users directly launch classic software with no emulator or per-emulated-machine learning curve.

On the Mac it is a native Cocoa application. Under Linux, BSD and other UNIXes and UNIX-alikes it relies upon SDL 2.

So its aims are:

  • single-click load of any piece of source media for any supported platform;
  • with a heavy signal processing tilt for accurate reproduction of original outputs;
  • that aims for the lowest possible latency; and
  • 100% accurate emulations, naturally.

It currently contains emulations of the:

  • Acorn Electron;
  • Amstrad CPC;
  • Atari 2600;
  • Commodore Vic-20 (and Commodore 1540/1);
  • Oric 1/Atmos; and
  • Sinclair ZX80/81.

Single-click Loading

Through the combination of static analysis and runtime analysis, CLK seeks to be able automatically to select and configure the appropriate machine to run any provided disk, tape or ROM; to issue any commands necessary to run the software contained on the disk, tape or ROM; and to provide accelerated loading where feasible.

The full process of loading a title — even if you've never used the emulated machine before — is therefore:

  1. locate it in your OS;
  2. double click it.

Signal Processing

Consider an ordinary, unmodified Commodore Vic-20. Its only video output is composite. Therefore the emulated machine's only video output is composite. In order to display the video output, your GPU then decodes composite video. Therefore all composite video artefacts are present and exactly correct, not because of a post hoc filter combining all the subjective effects that this author associates with composite video but because the real signal is really being processed.

Similar effort is put into audio generation. If the real machine normally generates audio at 192Khz then the emulator generates a 192Khz source signal and filters it down to whatever the host machine can output.

If your machine has a 4k monitor and a 96Khz audio output? Then you'll get a 4k rendering of a composite display and, assuming the emulated machine produces source audio at or above 96Khz, 96,000 individual distinct audio samples a second. Interlaced video also works and looks much as it always did on those machines that produce it.

Samples

1:1 Pixel Copying Composite Decoded
The Electron start screen, with a classic 1:1 pixel emulation The Electron start screen, decoded from an interlaced composite feed
Repton 3 in game, with a classic 1:1 pixel emulation Repton 3 in game, decoded from an interlaced composite feed
Stormlord with a classic 1:1 pixel emulation Stormlord decoded from an interlaced composite feed
1:1 Pixel Copying Correct Aspect Ratio, Filtered
Amstrad text, with a classic 1:1 pixel emulation Amstrad text, with correct aspect ratio and subject to a lowpass filter
The Amstrad CPC version of Stormlord, with a classic 1:1 pixel emulation The Amstrad CPC version of Stormlord, with correct aspect ratio and subject to a lowpass filter
Repton title screen, interlaced

Low Latency

The display produced is an emulated CRT, with phosphor decay. Therefore if you have a 140Hz monitor it can produce 140 distinct frames per second. Latency is dictated by the output hardware, not the emulated machine.

The machine update mechanism is influenced separately by both screen refresh and audio stream processing; audio latency is therefore generally restrained to 510ms regardless of your screen's refresh rate.

A corollary of emulating the continuous nature CRT, not merely performing end-of-frame transcriptions, is that the most common motion aliasing effects of displaying 50Hz video on a 60Hz display are minimised; you don't have to own niche equipment to benefit.

Accurate Emulation

Cycle-accurate emulation for the supported target machines is fairly trite; this emulator seeks to follow that precedent. All emulation logic is written in C++ for explicit control over costs but, where a conflict arises, the presumption is towards clarity and simplicity of code. This emulator is willing to spend the processing resources available on modern hardware.

Self-ratings:

  • the Electron, Oric and Vic-20 are pretty much perfect;
  • the ZX80 and ZX81 are very strong;
  • the Amstrad CPC has known accuracy deficiencies in its 8272 and 6845;
  • the Atari 2600 has some known accuracy deficiencies in its TIA;
  • the C-1540(/1) is locked in reading mode and doesn't yet support writing.