Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

52 lines
1.3KB

  1. \documentclass{article}
  2. \usepackage[utf8]{inputenc}
  3. \usepackage{tikz-timing}
  4. \usetikztiminglibrary[rising arrows]{clockarrows}
  5. \usepackage{xparse} % NewDocumentCommand, IfValueTF, IFBooleanTF
  6. % Reference a bus.
  7. %
  8. % Usage:
  9. %
  10. % \busref[3::0]{C/BE} -> C/BE[3::0]
  11. % \busref*{AD} -> AD#
  12. % \busref*[3::0]{C/BE} -> C/BE[3::0]#
  13. %
  14. \NewDocumentCommand{\busref}{som}{\texttt{%
  15. #3%
  16. \IfValueTF{#2}{[#2]}{}%
  17. \IfBooleanTF{#1}{\#}{}%
  18. }}
  19. \title{Waveform drawing}
  20. \author{peteraa }
  21. \date{June 2019}
  22. \begin{document}
  23. \begin{tikztimingtable}[%
  24. timing/dslope=0.1,
  25. timing/.style={x=5ex,y=2ex},
  26. x=5ex,
  27. timing/rowdist=3ex,
  28. timing/name/.style={font=\sffamily\scriptsize}
  29. ]
  30. \busref{CLK} & 32{c} \\
  31. \busref{A} & 1D{5} 1D{0} 1D{4} 1D{8} 1D{1} 1D{6} 1D{6} 1D{2} 1D{9} 1D{0} 1D{8} 1D{3} 1D{9} 1D{3} 2U \\
  32. \busref{B} & 1D{8} 1D{3} 1D{3} 1D{2} 1D{7} 1D{6} 1D{7} 1D{8} 1D{5} 1D{2} 1D{7} 1D{1} 1D{8} 1D{2} 2U \\
  33. \busref{VALID} & 6U 1H 6U 1H 2U\\
  34. \busref{Output} & 1D{40} 1D{40} 1D{52} 1D{68} 1D{75} 1D{111} 1D{153} 1D{16} 1D{61} 1D{61} 1D{117} 1D{120} 1D{192} 1D{198} 2U\\
  35. \extracode
  36. \begin{pgfonlayer}{background}
  37. \begin{scope}[semitransparent ,semithick]
  38. \vertlines[darkgray,dotted]{0.5,1.5 ,...,8.0}
  39. \end{scope}
  40. \end{pgfonlayer}
  41. \end{tikztimingtable}
  42. \maketitle
  43. \section{Introduction}
  44. \end{document}