summaryrefslogtreecommitdiff
path: root/chap/encl1.tex
diff options
context:
space:
mode:
Diffstat (limited to 'chap/encl1.tex')
-rw-r--r--chap/encl1.tex6
1 files changed, 4 insertions, 2 deletions
diff --git a/chap/encl1.tex b/chap/encl1.tex
index a2eafac..6a8e62a 100644
--- a/chap/encl1.tex
+++ b/chap/encl1.tex
@@ -11,7 +11,8 @@
#include <string.h>
#include <x86intrin.h>
-/* default: 64B line size, L1-D 64KB assoc 2, L1-I 32KB assoc 2, L2 2MB assoc 8 */
+/* default: 64B line size, L1-D 64KB assoc 2, L1-I 32KB assoc 2
+ , L2 2MB assoc 8 */
#define LLC_SIZE (2 << 20)
uint8_t dummy[LLC_SIZE];
@@ -59,7 +60,8 @@ int main()
printf("attack_idx = %ld\n", attack_idx);
for (int i = 0; i < 256; i++) {
- printf("%d: %d, %s\n", i, t[i], (t[i] < 40)? "hit": "miss");
+ printf("%d: %d, %s\n", i, t[i],
+ (t[i] < 40)? "hit": "miss");
}
}
\end{minted}