6-results.tex 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. \iffalse
  2. This chapter looks specifically at your results.
  3. * You measured some samples.
  4. What values did you measure?
  5. Present them in a table or graph?
  6. How did you test whether they were good measurements?
  7. Were you looking to improve something?
  8. Are your new samples better than the old ones?
  9. * You built a device;
  10. what tests did you run to make sure that it is running correctly?
  11. * You calculated something or developed a new theory about something.
  12. How do you know how well it predicts?
  13. What tests did you run?
  14. What comparisons with the literature did you make?
  15. * You coded or simulated something.
  16. What tests did you run to be sure it was working correctly?
  17. Describe what you want the reader to notice in the results.
  18. Give the facts, then give your analysis of the facts.
  19. Present your graphs, figures, tables, photos, and equations needed to show what you accomplished.
  20. Label everything clearly, using the recommendations given below in “Things to Look For”
  21. \fi
  22. \subsection{Benchmark Programs}
  23. \subsubsection{Number of instructions}
  24. \subsubsection{Instruction composition}
  25. Function composition was executed with following code:
  26. \begin{lstlisting}[frame=single, caption={RISC assembly frame for executring tests}, emph={setup,start,done}]
  27. setup:
  28. JUMP .start
  29. .done:
  30. JUMP .done
  31. .start:
  32. ; Setup values
  33. ; Call function
  34. JUMP .done
  35. \end{lstlisting}
  36. \begin{lstlisting}[frame=single, caption={OISC assembly frame for executring tests}, emph={setup,start,done}]
  37. setup:
  38. BR1 .start @1
  39. BR0 .start @0
  40. BRZ 0x00
  41. .done:
  42. BRZ 0x00
  43. .start:
  44. ; Setup values
  45. ; Call function
  46. BR1 .done @1
  47. BR0 .done @0
  48. BRZ 0x00
  49. \end{lstlisting}
  50. \subsection{Maximum clock frequency}
  51. \subsection{}