Print all information

This commit is contained in:
Dr-Noob
2018-03-29 23:27:59 +02:00
parent 4ebcfbeed3
commit 978f283e1a
10 changed files with 409 additions and 15 deletions

22
printer.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef __PRINTER__
#define __PRINTER__
//#include "ascii.h"
//void print_ascii(int n);
#define TITLE_NAME "Name: "
#define TITLE_ARCH "Arch: "
#define TITLE_FREQUENCY "Frecuency: "
#define TITLE_NCORES "N.Cores: "
#define TITLE_AVX "AVX: "
#define TITLE_SSE "SSE: "
#define TITLE_FMA "FMA: "
#define TITLE_AES "AES: "
#define TITLE_SHA "SHA: "
#define TITLE_L1 "L1 Size: "
#define TITLE_L2 "L2 Size: "
#define TITLE_L3 "L3 Size: "
#define TITLE_PEAK "Peak FLOPS: "
#endif