VPR-7.0
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
read_netlist.h
Go to the documentation of this file.
1 /**
2  * Author: Jason Luu
3  * Date: May 2009
4  *
5  * Read a circuit netlist in XML format and populate the netlist data structures for VPR
6  */
7 
8 #ifndef READ_NETLIST_H
9 #define READ_NETLIST_H
10 
11 void read_netlist(INP const char *net_file,
12  INP const t_arch *arch,
13  OUTP int *L_num_blocks,
14  OUTP struct s_block *block_list[],
15  OUTP int *L_num_nets,
16  OUTP struct s_net *net_list[]);
17 
18 void free_logical_blocks(void);
19 void free_logical_nets(void);
20 
21 #endif
22 
void free_logical_nets(void)
#define INP
Definition: util.h:19
void read_netlist(INP const char *net_file, INP const t_arch *arch, OUTP int *L_num_blocks, OUTP struct s_block *block_list[], OUTP int *L_num_nets, OUTP struct s_net *net_list[])
Definition: read_netlist.c:72
#define OUTP
Definition: util.h:20
void free_logical_blocks(void)