mirror of
https://github.com/blackboxprogramming/universal-computer.git
synced 2026-03-17 03:57:12 -05:00
12 lines
190 B
JSON
12 lines
190 B
JSON
{
|
|
"states": ["q0", "q_h"],
|
|
"alphabet": ["1", "_"],
|
|
"blank": "_",
|
|
"transitions": {
|
|
"q0:1": ["q0", "1", "R"],
|
|
"q0:_": ["q_h", "1", "S"]
|
|
},
|
|
"start": "q0",
|
|
"halt": "q_h"
|
|
}
|