Based on: Lab 3: Introduction to Assembly Language by CJ Ganier
Summary: A lab that introduces a student to assembly language programming.
In this lab you will be asked to write simple assembly statements, follow already written assembly statements, and finally to reproduce the SOS light blinking program from Lab 1 in assembly.
Formulate instructions to do the following things:
Examine this loop:
... more instructions...
Mov.w &I, R4
Cmp.w #0x0000, R4
JZ After_loop
Start_loop:
Dec.w #0x0001, R4
JZ After_loop
BR #Start_loop
After_loop:
...more instructions...
Re-write the blinking light program from Lab 1 using assembly code instead. As you may recall, the program must blink "SOS" (which is "... --- ...") and conform to the following Morse Code standards:
"Basic instructions and code for assembly programming."