Files
universal-computer/machines/incrementer.json
blackboxprogramming 16d268b20d Add incrementer.json
2025-07-24 02:27:11 -07:00

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"
}