blob: d448579c3ea6c23865f10a709dd9b911bc43ac9c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
\documentclass{cheatsheet}
\geometry{a5paper,landscape}
\begin{document}
\begin{center}
\textbf{Clean RTS Cheat Sheet}
\end{center}
\hfill
\begin{minipage}[t][][b]{.3\textwidth}%
\centering%
\textbf{Registers}
\bigskip
\input{registers}
\end{minipage}%
\hfill
\begin{minipage}[t][][b]{.5\textwidth}%
\tabularwrappingfalse%
\setlength{\tabcolsep}{.2em}%
\begin{tabular}{|lcccccccc|}%
\multicolumn{9}{c}{\textbf{{\CallingConventionHeader}s}}\\
\multicolumn{1}{c}{}\\[-1em]
\multicolumn{9}{c}{\textit{System V}}\\\hline
\csname @@input\endcsname system-v-abi-contents \\\hline
\multicolumn{1}{c}{}\\
\multicolumn{9}{c}{\textit{Microsoft x64}}\\\hline
\csname @@input\endcsname microsoft-x64-contents \\\hline
\end{tabular}%
\end{minipage}%
\hfill
\bigskip
\end{document}
|