Added the start of a second chapter for the ISA itself.

This commit is contained in:
2024-07-15 23:57:27 -05:00
parent 70849bb698
commit 51c79d74aa
3 changed files with 24 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
\chapter{Instruction Set Architecture}
\section{Encoding}
\def\minY{0} \def\maxY{0.5}
\def\minX{-7} \def\maxX{7}
\begin{tikzpicture}
\draw (\minX, \minY) -- (\maxX, \minY);
\draw (\minX, \minY) -- (\minX, \maxY) node[above] {31}; %{$y$}; Note the $'s, those make something math stylized.
\draw (\maxX, \minY) -- (\maxX, \maxY) node[above]{0};
\end{tikzpicture}