Ram Managment

  Save:
  A: Adress
  B: Rom Number/adress to load from
  C: From: 1=ALU1 2 = ALU2, 3 = Rom, 4 = Ram

  Load:
  F:LoadA
  G:LoadB
  H: To: 1= ALU1 2 = ALU2, 3 = Number Display, 4 = GPU

Alu/Gpu actions

  D:Alu Number
  E: 1:+, 2:-, 3:*, 4:/ 5:A++, 6:A--
  I: 1=Write Pixel,2=Clear Pixel

Bottom row = if then + goto

  //if then only on Alu1

  K = false(default)
  L = true
  M = 1: A=B 2: A>B 3: A<B

  if K==0 then Line ++

  if K==-1 then Break

Yellow = Clock
Black = Reset
Red = Off


example program that adds 2 numbers:

My "program"
1 1: = 3		1: means ram adress 1
2 2: = 5		5  means the number 5
3 (1:,2:) to Alu1	send the numbers to the Alu
4 3: = Alu1+		tell the Alu to add
5 (3:) to Display	write the result to the screen

This goes into the combinators:(compare above)
1 A=1, B=3, C=3
2 A=2, B=5, C=3
3 F=1, G=2, H=1
4 A=3, C=1, D=1, E=1
5 F=3,H=3
