diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-03-25 11:46:07 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-03-25 11:46:07 -0700 |
commit | 0ea5f759fc3c213c158ec331511dba252bb66d05 (patch) | |
tree | 461ab0e9dcd9428591c3dac6beb29e5f3aeb686c | |
parent | 606c1ab49a6753d4bc84b65466774274fcf04a83 (diff) | |
download | mu-0ea5f759fc3c213c158ec331511dba252bb66d05.tar.gz |
6171
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md index 60d14ffd..f5962d33 100644 --- a/README.md +++ b/README.md @@ -311,8 +311,8 @@ will override earlier ones. be built up incrementally out of multiple [_layers_](http://akkartik.name/post/wart-layers).) Another special pair of labels are the block delimiters `{` and `}`. They can -be nested, and the instructions `loop` and `break` jump to the enclosing `{` -and `}` respectively. +be nested, and jump instructions can take arguments `loop` or `break` that +jump to the enclosing `{` and `}` respectively. The data segment consists of labels as before and byte values. Referring to data labels in either `code` segment instructions or `data` segment values |