VPR-6.0

libvpr/include/arch_types.h

Go to the documentation of this file.
00001 /**
00002  * @file
00003  *
00004  * Data types describing the FPGA architecture.
00005  *
00006  * Date: February 19, 2009
00007  * Authors: Jason Luu and Kenneth Kent
00008 */
00009 
00010 #ifndef ARCH_TYPES_H
00011 #define ARCH_TYPES_H
00012 
00013 #include "logic_types.h"
00014 #include "physical_types.h"
00015 
00016 /** Constant describing architecture library version number */
00017 #define VPR_VERSION "6.0 Full Release"
00018 
00019 /** Input file parsing. */
00020 #define TOKENS " \t\n"
00021 
00022 /** Value for UNDEFINED data */
00023 #define UNDEFINED -1
00024 
00025 /** Maximum value for mininum channel width to avoid overflows of short data type.               */
00026 #define MAX_CHANNEL_WIDTH 8000
00027 
00028 #endif
00029