diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-03-16 22:47:28 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-03-16 22:48:41 -0700 |
commit | 100157d1a83ccb02d82af21c5767ecda3d7cb1c2 (patch) | |
tree | d540d4a6351473119bf49c4ad03de9856caacc61 /cpp/015jump | |
parent | 5df82e48a2548e7d30b3e86dab0d866851a1c47d (diff) | |
download | mu-100157d1a83ccb02d82af21c5767ecda3d7cb1c2.tar.gz |
939 - c++: fix an old parsing hack
Diffstat (limited to 'cpp/015jump')
-rw-r--r-- | cpp/015jump | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cpp/015jump b/cpp/015jump index 5b4a9624..2ce18859 100644 --- a/cpp/015jump +++ b/cpp/015jump @@ -24,10 +24,11 @@ recipe main [ :(scenario "jump_backward") recipe main [ - jump 1:offset // 0 -+ - jump 1:offset // | 1 +-+ - jump -2:offset // 2 +-->+ | -] // 3 \/ + jump 1:offset # 0 -+ + jump 1:offset # | +-+ 1 + # \/ /\ | + jump -2:offset # 2 +-->+ | +] # \/ 3 +run: instruction main/0 +run: instruction main/2 +run: instruction main/1 |