diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-10-20 14:51:05 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-10-20 14:51:05 -0700 |
commit | 019de1c30466c0228dafe516d8edbe1465adb1b4 (patch) | |
tree | 2a4d5cfc17e7848a05eb39ad89bc8ccb97f9c031 /tutorial | |
parent | 8b87d2244e89fdbd1b4c8c59cfd69f07c5541431 (diff) | |
download | mu-019de1c30466c0228dafe516d8edbe1465adb1b4.tar.gz |
.
Diffstat (limited to 'tutorial')
-rw-r--r-- | tutorial/index.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tutorial/index.md b/tutorial/index.md index 6d0177e0..81cdd932 100644 --- a/tutorial/index.md +++ b/tutorial/index.md @@ -198,7 +198,8 @@ command as often as you like: ./translate tutorial/task5.mu && qemu-system-i386 code.img ``` -The section on [integer primitives](https://github.com/akkartik/mu/blob/main/mu.md#integer-primitives) shows that Mu consistently follows a few rules: +The section on [integer primitives](https://github.com/akkartik/mu/blob/main/mu.md#integer-primitives) +shows that Mu consistently follows a few rules: * Instructions that write to a register always have an output before the `<-`. * Instructions that use an argument in memory always have it as the first inout. |