/** Blinkenlights on outx register */ export class BlinkenLights { /** Create a new BlinkenLights * @param {Gigatron} cpu */ constructor(cpu) { this.cpu = cpu; this.outx = cpu.outx & 0x0f; this.timer = null; for (let i = 0; i < 4; i++) { $(`.led-${i}`).addClass( `led-${(this.outx & (1<