ldAldBldCldDselAselBselCselDldM1ldM2ldJ1ldJ2selM1selM2selMselJldInstldCondldINCselINCldPCselPCldXldYldXYselXselYselXYselDSselASCLKI2BADDINCSHLANDORXORNOTB2MMWMR76543210LOADMISCSTOREINCXYGOTOMOV8SETABMOV16HALTCLKSCZCL210INCORNOTNOPADDANDXORSHLData Bus Display7Data Bus Display6Data Bus Display5Data Bus Display4Data Bus Display3Data Bus Display2Data Bus Display1Data Bus Display0Address Bus Display0Address Bus Display1Address Bus Display2Address Bus Display3Address Bus Display4Address Bus Display5Address Bus Display6Address Bus Display7Address Bus Display8Address Bus Display9Address Bus DisplayaAddress Bus DisplaybAddress Bus DisplaycAddress Bus DisplaydAddress Bus DisplayeAddress Bus Displayf76543210DEPNEXTDEPEXAMNEXTEXAM> > LOADADRS> > CLKSTEP> > RSRT> > RSET> > RUNSTOPSequencer Card A <?xml version="1.0" encoding="utf-8" standalone="no"?> Sequencer (Hi)Sequencer Card B <?xml version="1.0" encoding="utf-8" standalone="no"?> Sequencer (Lo)Control Card A <?xml version="1.0" encoding="utf-8" standalone="no"?> Control (Hi)Control Card B <?xml version="1.0" encoding="utf-8" standalone="no"?> Control (Lo)Decoder <?xml version="1.0" encoding="utf-8" standalone="no"?> DecoderRegister Instruction Register <?xml version="1.0" encoding="utf-8" standalone="no"?> Instruction RegisterRegister Program Counter <?xml version="1.0" encoding="utf-8" standalone="no"?> Program CounterIncrementer <?xml version="1.0" encoding="utf-8" standalone="no"?> IncrementerRegister Increment Register <?xml version="1.0" encoding="utf-8" standalone="no"?> Incrementer RegisterClock> > > > <?xml version="1.0" encoding="utf-8" standalone="no"?> ClockRegister J1Register J2 <?xml version="1.0" encoding="utf-8" standalone="no"?> J RegisterRegister M1Register M2 <?xml version="1.0" encoding="utf-8" standalone="no"?> M RegisterRegister XRegister Y <?xml version="1.0" encoding="utf-8" standalone="no"?> XY RegisterMemory A> > <?xml version="1.0" encoding="utf-8" standalone="no"?> Memory (Hi)Memory B <?xml version="1.0" encoding="utf-8" standalone="no"?> Memory (Lo)Register Register ARegister Register D <?xml version="1.0" encoding="utf-8" standalone="no"?> A/D RegisterRegister Register BRegister Register C <?xml version="1.0" encoding="utf-8" standalone="no"?> B/C RegisterALU Control Card <?xml version="1.0" encoding="utf-8" standalone="no"?> ALU ControlALU Arithmetic Card <?xml version="1.0" encoding="utf-8" standalone="no"?> ALU ArithmeticALU Logic Card <?xml version="1.0" encoding="utf-8" standalone="no"?> ALU Logic0123456789ABCDEF0000000000000000000000000000000000000100000000000000000000000000000000002000000000000000000000000000000000030000000000000000000000000000000000400000000000000000000000000000000005000000000000000000000000000000000060000000000000000000000000000000000700000000000000000000000000000000008000000000000000000000000000000000090000000000000000000000000000000000A0000000000000000000000000000000000B0000000000000000000000000000000000C0000000000000000000000000000000000D0000000000000000000000000000000000E0000000000000000000000000000000000F00000000000000000000000000000000SCZA0000B0000C0000D0000M10000M20000X0000Y0000J10000J20000000000PC0000INST00Page0000DispHexUIntMemory & Register StateDisplay ADisplay BPrimary Control SwitchesCard Bay WCard Bay XCard Bay YCard Bay Z

This is a simulation of my relay computer using Angular + SVG and is best viewed on a larger screen. More information on my relay computer can be found at my blog.

If you would like to dive straight in and have a go on this simulator there is a tutorial section following the operating instructions below.

Alternatively you can write a program in assembly and then import the opcodes to the 'memory' of this simulation.

Operating Instructions

Most parts of the computer can be operated manually by using the switches in Display A (at the top left). Click a switch once to turn it on and again to turn it off. When that line is active the switch lights up.

The primary switches are below Display A. Click a switch to turn it on (black circle is up) and again to turn it off (black circle is down). The 'Deposit' and 'Exam' switches can be pushed up or down by clicking on the upper or lower half. The remaining switches can be turned on by clicking anywhere within the switch. The 'Dep Next' and switches to the right are all momentary and will reset to off after a short pause.

Tutorial

Assuming the simulator is in its default state (refresh this page to re-default it if not) you can follow this tutorial to perform a calculation of the fibonacci sequence up to 233 (as that is the largest fibonacci number that can fit in an 8-bit register). This will allow you to try out the five instruction classes currently supported by the computer.

Here are the steps that make up the program using the five instruction classes ALU, MOVE8, GOTO, HALT and SETAB:

 0000 SETAB A = 1  ; Initalise A = B = 1
 0001 MOV8  B = A

 0002 MOV8  C = B  ; C = B then B = A
 0003 MOV8  B = A
 0004 ALU   ADD    ; A = B + C

 0005 GOTO  000B C ; Jump to halt line if
                   ; add caused an overflow
                   ; otherwise ...

 0008 GOTO  0002   ; Jump back to line 2
                   ; and repeat for next
                   ; number in series

 000B HALT         ; Halt execution

Using the list of instructions each line of this program can be converted in to the binary opcode equivalent as follows:

 0000 01000001 ; SETAB A = 1
 0001 00001000 ; MOV8  B = A

 0002 00010001 ; MOV8  C = B
 0003 00001000 ; MOV8  B = A
 0004 10000001 ; ALU   ADD

 0005 11101000 ; GOTO  000B C
 0006 00000000
 0007 00001011

 0008 11100110 ; GOTO  0002
 0009 00000000
 000A 00000010

 000B 10101110 ; HALT

To load this program in to memory, line-by-line, set the black primary switches to match the opcode and then flick the 'DEP NEXT' switch which will load the instrucion into memory and then advance the program counter. Just keep setting the primary switches and flicking 'DEP NEXT' until all opcodes have been entered. Once the program is loaded you should see the following values in the memory view:

 000  41 08 11 08 81 E8 00 0B
      E6 00 02 AE 00 00 00 00
 001  00 00 00 00 00 00 00 00
      00 00 00 00 00 00 00 00
 ...

This is the hexadecimal representation of each 8-bit opcode loaded in to memory. To execute the program first set all the black switches back to 0 and flick the 'LOAD ADDR' switch to reset the program counter back to the first position in memory. To prime the sequencer flick the 'RSET' switch which sets the 'S00' light in the sequencer. You can now flick the RUN/STOP switch to RUN and the program will begin executing.

Immediately following each ALU ADD you'll find the next sequence number in register A. The sequence starts with 1 loaded in to register B and C so the sequence in register A goes 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233 at which point the program then jumps to the halt instruction (when the next value (377) causes an overflow) and the clock is halted. Execution can be continued by flicking the 'RSRT' (Restart) switch although the computer will just run the remaining 00s in memory which represent copying register A to register A (clearing the value).