CSC270 Lab 9 2011

From dftwiki3
Jump to: navigation, search

--Dominique 10:10, 28 March 2011 (EDT)



The goal for this lab is to take the endless loop program you had to write for today, assemble it and enter its code in the 6811 trainer, and use the scope to see its execution, live!

Part 1

  • Assemble your code
  • Create a cycle by cycle description of the execution of the instruction. Use one line per cycle, and use text, rather than a drawing.
  • Enter the opcodes in the trainer.
  • Execute the program
Question
Why is the trainer display blank when the program runs?

Part 2

  • Put one probe on the E clock signal (use the handout to spot the different signals on the trainer breadboard area).
  • Put the other probe on the LIR signal, which is the complement of the 6811 LIR signal. The 6811 Reference Manual defines the LIR as follows:
LIR': The LIR' (active low) pin goes to an active low during the first E-clock cycle of each instruction and
remains low for the duration of that cycle (opcode fetch).
Some MC6811 opcocdes are two consecutive bytes long [...]. For these instruction LIR' goes low for only the first (prebyte) opcode byte fetch.
  • Take a picture, and be the sleuth! Describe what you are observing.
Question
What is the average number of instructions executed by the 6811 over time. Express your result in MIPS (million instructions per seconds)?

Part 3

  • Connect a third probe to the R/W' (read/write) signal.
  • Similarly, be the sleuth and explain what you observe.
Question
What is the average number of times your loop runs, in one second?

Part 4

  • Connect a fourth probe to one of the address bus lines. Pick one that will give you the most information about what is going on.
  • Similarly, be the sleuth and explain what you observe on the scope.

Part 5

  • Disconnect one of the probes (figure out which signal is least important for this part), and connect it to one of the bits of the data bus. Again, pick the bit that carries most information and will be able to best illustrate what is going on.
Question
You should notice that in one cycle the data bit you picked is not stable, and keeps showing 1 and 0, seemingly simultaneously. Why is this happening?