/media/sda-magnetic/david/Dokumente-16-2024-08-01/informatikUmathematik/vhdl20240524/automat20240520.txt


Zustand,Eingabe,Ausgabe,Folgezustand
1,0,1,3
1,1,1,1
2,0,1,2
2,1,0,4
3,0,0,1
3,1,1,2
4,0,0,4
4,1,1,3


z1+ := (z1 and x) or (z3 and not x)
z2+ := (z2 and not x) or (z3 and x)
z3+ := (z1 and not x) or (z4 and x)
z4+ := (z2 and x) or (z4 and not x)

y := (z1) or (z2 and not x) or (z3 and x) or (z4 and x)