mirror of
https://github.com/blackboxprogramming/universal-computer.git
synced 2026-03-17 06:57:15 -05:00
16 lines
310 B
JSON
16 lines
310 B
JSON
{
|
|
"states": ["A", "B", "C", "halt"],
|
|
"alphabet": ["0", "1"],
|
|
"blank": "0",
|
|
"start": "A",
|
|
"halt": "halt",
|
|
"transitions": {
|
|
"A:0": ["B", "1", "R"],
|
|
"A:1": ["C", "1", "L"],
|
|
"B:0": ["A", "1", "L"],
|
|
"B:1": ["B", "1", "R"],
|
|
"C:0": ["B", "1", "L"],
|
|
"C:1": ["halt", "1", "S"]
|
|
}
|
|
}
|