From ba9f2bb6cb5bff38dfef4867dc6969cee6a31733 Mon Sep 17 00:00:00 2001 From: Mikael Nordin Date: Sat, 30 Dec 2017 16:45:31 +0100 Subject: [PATCH] Update README.md --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 39ba725..27ca3f3 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,22 @@ This is an example of a one card busy beaver: ``` 1 1 -0 +0 1 0 0 ```` +that means +``` +# If registry is zero +1 # What to write one or zero +1 # Move left for 1 move right for 0 +0 # Number of next card, an int +# If registry is one +1 # What to write one or zero +0 # Move right for 1 move left for 0 +0 # Number of next card, an int +```` This means that if the registry value is 0 write a 1 to the left and then move to card zero (halt). If the registry value is 0 write a 1 to the right and then move to card zero.