From 86377c9be5e8652b4480896824f5c49b11875a70 Mon Sep 17 00:00:00 2001 From: Simon Fortier Date: Thu, 28 Dec 2017 22:58:11 -0500 Subject: [PATCH] Updated Basic Assembly tutorial (markdown) --- Basic-Assembly-tutorial.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Basic-Assembly-tutorial.md b/Basic-Assembly-tutorial.md index 5e44b1b..ad8e727 100644 --- a/Basic-Assembly-tutorial.md +++ b/Basic-Assembly-tutorial.md @@ -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 ```