summaryrefslogtreecommitdiff
path: root/report/speed_table.tex
diff options
context:
space:
mode:
authorBrett Weiland <brett_weiland@gmail.com>2024-04-11 23:59:19 -0500
committerBrett Weiland <brett_weiland@gmail.com>2024-04-11 23:59:19 -0500
commit88a70c60e2422c2bce9246271dc083a9d02d2cdc (patch)
tree8662035eda8df000aab330ece228638515befd46 /report/speed_table.tex
parent3f1369e4f9e48ff0dd19fe6f500364845d437b0c (diff)
how the fuck am i gonna finish this
Diffstat (limited to 'report/speed_table.tex')
-rw-r--r--report/speed_table.tex23
1 files changed, 23 insertions, 0 deletions
diff --git a/report/speed_table.tex b/report/speed_table.tex
new file mode 100644
index 0000000..32c8d03
--- /dev/null
+++ b/report/speed_table.tex
@@ -0,0 +1,23 @@
+\begin{tabular}{llrrr}
+\toprule
+ multiplicand & multiplier & length & booth & modified booth \\
+\midrule
+ 0b1110 & 0b1111 & 4 & 1 & 1 \\
+ 0b101 & 0b0 & 4 & 0 & 0 \\
+ 0b111111 & 0b111111 & 6 & 1 & 1 \\
+ 0b101110 & 0b110111 & 6 & 3 & 3 \\
+ 0b111011 & 0b100011 & 6 & 3 & 3 \\
+ 0b11111 & 0b1010101 & 8 & 8 & 4 \\
+ 0b11010111 & 0b1010101 & 8 & 8 & 4 \\
+ 0b1010101 & 0b11010111 & 8 & 5 & 4 \\
+ 0b1110111 & 0b110011 & 8 & 4 & 4 \\
+ 0b0 & 0b1110111 & 8 & 4 & 4 \\
+ 0b101010101 & 0b101010101 & 10 & 10 & 5 \\
+ 0b1100111011 & 0b1001110000 & 10 & 3 & 3 \\
+ 0b1001101110 & 0b101111010 & 10 & 6 & 4 \\
+ 0b10101010101 & 0b10101010101 & 12 & 12 & 6 \\
+ 0b1111100111 & 0b0 & 12 & 0 & 0 \\
+ 0b101010101010 & 0b101010101010 & 12 & 11 & 6 \\
+ 0b111001110000 & 0b11111111 & 12 & 2 & 2 \\
+\bottomrule
+\end{tabular} \ No newline at end of file