VPR-6.0

vpr/SRC/base/read_netlist.h

Go to the documentation of this file.
00001 /**
00002  * @file
00003  *
00004  * Author: Jason Luu
00005  * Date: May 2009
00006  * 
00007  * Read a circuit netlist in XML format and populate the netlist data structures for VPR
00008  */
00009 
00010 #ifndef READ_NETLIST_H
00011 #define READ_NETLIST_H
00012 
00013 void read_netlist(INP const char *net_file,
00014                                   INP const t_arch *arch,
00015                                   OUTP int *num_blocks,
00016                                   OUTP struct s_block *block_list[],
00017                                   OUTP int *num_nets,
00018                                   OUTP struct s_net *net_list[]);
00019 
00020 void free_logical_blocks();
00021 void free_logical_nets();
00022 
00023 #endif
00024