mirror of
https://github.com/blackboxprogramming/universal-computer.git
synced 2026-03-17 06:57:15 -05:00
Add incrementer.json
This commit is contained in:
committed by
GitHub
parent
4ca4b10c38
commit
16d268b20d
11
machines/incrementer.json
Normal file
11
machines/incrementer.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"states": ["q0", "q_h"],
|
||||
"alphabet": ["1", "_"],
|
||||
"blank": "_",
|
||||
"transitions": {
|
||||
"q0:1": ["q0", "1", "R"],
|
||||
"q0:_": ["q_h", "1", "S"]
|
||||
},
|
||||
"start": "q0",
|
||||
"halt": "q_h"
|
||||
}
|
||||
Reference in New Issue
Block a user