diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-10-23 23:43:21 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-10-23 23:43:21 -0700 |
commit | c9eeca659e19cf8eedce2e7c5a41738153d42de4 (patch) | |
tree | a7aec8d1489a8a37e1ea938f28e4a193806295c4 | |
parent | b4a3e804af6e78fe129f9a500c995d64fe70c4c0 (diff) | |
download | mu-c9eeca659e19cf8eedce2e7c5a41738153d42de4.tar.gz |
.
-rw-r--r-- | mu.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mu.md b/mu.md index 1eeb9842..f940a6bd 100644 --- a/mu.md +++ b/mu.md @@ -249,7 +249,7 @@ However, there's no way to jump to a block that doesn't contain the `loop` or ### Integer arithmetic -These instructions require variables of non-`addr`, non-float types. +These instructions require variables of non-`addr`, non-`float` types. Add: ``` @@ -346,7 +346,7 @@ fourth decimal place](linux/x86_approx.md). If you need more precision, use ### Bitwise boolean operations -These require variables of non-`addr`, non-float types. +These require variables of non-`addr`, non-`float` types. And: ``` @@ -383,7 +383,7 @@ Xor: ### Shifts -Shifts require variables of non-`addr`, non-float types. +Shifts require variables of non-`addr`, non-`float` types. ``` var/reg <- shift-left n |