#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include "types.h"
#include "globals.h"
#include "errors.h"
#include "netlist_utils.h"
#include "odin_util.h"
#include "outputs.h"
#include "output_blif.h"
Go to the source code of this file.
Functions | |
void | output_top (netlist_t *netlist) |
void output_top | ( | netlist_t * | netlist | ) |
Definition at line 41 of file outputs.c.
00042 { 00043 output_blif(global_args.output_file, netlist); 00044 00045 #ifdef VPR5 00046 /* outputs in form that's readbale by graphcrunch */ 00047 graphcrunch_output(".", "gc.txt", GRAPH_CRUNCH, netlist); 00048 #endif 00049 }