Initial commit and setup.

This commit is contained in:
2024-05-09 20:31:43 -05:00
commit dcdf266cdd
3 changed files with 34 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
\documentclass[a4paper,12pt]{book}
\usepackage{tikz}
\usepackage{hyperref}
\hypersetup{
linktoc=all
}
\begin{document}
\title{Unnamed Machine}
\author{An attempt to understand the makings of a computer arch}
\maketitle
\tableofcontents
\include{chapter 1}
\end{document}
\newcommand{\OpcodeTable}[5] {
\begin{tabular}{ c c c c c }
\hline
Opcode & Bit Pattern & Mnemonic & Operand 1 & Operand 2 \\
\hline\hline
#1 & #2 & #3 & #4 & #5 \\
\hline
\end{tabular}
}