OpenFPGA/vpr7_x2p/libarchfpga/config_basic_arch.xml

28 lines
906 B
XML

<config>
<verilog_files>
<!-- Way of specifying multiple files in a project -->
<verilog_file>multiply72.v</verilog_file>
</verilog_files>
<output>
<!-- These are the output flags for the project -->
<output_type>blif_all_soft</output_type>
<output_path_and_name>./multiply72.blif</output_path_and_name>
<target>
<!-- This is the target device the output is being built for -->
<arch_file>fpga_arch_models.xml</arch_file>
</target>
</output>
<optimizations>
<!-- Options for hard multipliers: -->
<!-- if size <= min then soft logic used -->
<!-- if fixed == 1 then mults expanded to fixed hard block size -->
<multiply min="3" fixed="1"/>
</optimizations>
<debug_outputs>
<!-- Various debug options -->
<debug_output_path>.</debug_output_path>
<output_ast_graphs>1</output_ast_graphs>
<output_netlist_graphs>1</output_netlist_graphs>
</debug_outputs>
</config>