EGEC 280- Microcontrollers
Assignment 1
Name:
Date:
Delete this section.
• Body text must be Times new roman, font 12.
• Please crop your screenshots to show relevant sections legibly.
• Organize your report in the same sequence as the deliverables listed, maintain the same
section numbering.
Task Objectives:
• Using the stack pointer to store and access an array.
• Understanding how to implement a FOR loop in assembly language.
Instructions:
1. Store the following number sequence on stack: {8, 1, 9, 0, 10, 6, 6, 5}
2. Write a FOR loop to implement bubble sort on the array above and arrange it in
ascending order.
3. Remember to pop out all values from the stack at the end of your code.
Deliverables:
1. Write down the bubble sort algorithm as a simple flowchart
2. Provide a copy of your code
3. Show the stack contents (screenshot of memory) after storing the values mentioned
above.
4. Show the stack contents after the 3rd, 5th and 7th loop execution
5. Show the stack contents after bubble sort
Notes:
Once the values have been stored on the stack, you must use the loop index counters with the
current stack pointer value to sort the stack.