Updated Basic Assembly tutorial (markdown)

Simon Fortier 2017-12-28 22:58:11 -05:00
parent 0f41259bdd
commit 86377c9be5

@ -264,7 +264,8 @@ So we have seen how programmers can use programming languages to write computer
### Instruction and operands
Let's start with some an example:
```assembly
MOV A, 0x1337
MOV A, 1
MOV B, 0x1337
HWI 9
BRK
```