From 8ba8f89c67ed9fac6b4250f500d1d7bb3fda67ea Mon Sep 17 00:00:00 2001 From: Simon Fortier Date: Fri, 29 Dec 2017 09:57:56 -0500 Subject: [PATCH] Updated Assembly program examples (markdown) --- Assembly-program-examples.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Assembly-program-examples.md b/Assembly-program-examples.md index f97643a..4a0d19c 100644 --- a/Assembly-program-examples.md +++ b/Assembly-program-examples.md @@ -29,6 +29,8 @@ counter: DW 0x0000 ; Counter global variable counter_is_odd: ADD [counter], 1 ; Increment counter + MOV B, A + MOV A, 1 HWI HOLO_HW ; Display the contents of A BRK ; Exit program