VPR-7.0
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
arch_types.h
Go to the documentation of this file.
1 /*
2  Data types describing the FPGA architecture.
3 
4  Date: February 19, 2009
5  Authors: Jason Luu and Kenneth Kent
6  */
7 
8 #ifndef ARCH_TYPES_H
9 #define ARCH_TYPES_H
10 
11 #include "logic_types.h"
12 #include "physical_types.h"
13 #include "cad_types.h"
14 
15 /* Constant describing architecture library version number */
16 #define VPR_VERSION "7.0"
17 
18 /* Input file parsing. */
19 #define TOKENS " \t\n"
20 
21 /* Value for UNDEFINED data */
22 #define UNDEFINED -1
23 
24 /* Maximum value for mininum channel width to avoid overflows of short data type. */
25 #define MAX_CHANNEL_WIDTH 8000
26 
27 #endif
28