- Created a new loopback design file (loopback.bda) with nodes and edges defined in GraphML format. - Added a new Vivado project file for loopback (loopback.xpr) with updated configurations. - Introduced a new testbench for image convolution (img_conv_tb.vhd) in the simulation sources. - Updated the main project file (lab2.xpr) to reflect changes in source files and top module for simulation. - Removed obsolete project files (pak_depak.xpr.zip) and updated paths for existing source files.
43 lines
2.2 KiB
XML
43 lines
2.2 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
|
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
|
|
<key attr.name="base_addr" attr.type="string" for="node" id="BA"/>
|
|
<key attr.name="base_param" attr.type="string" for="node" id="BP"/>
|
|
<key attr.name="edge_hid" attr.type="int" for="edge" id="EH"/>
|
|
<key attr.name="high_addr" attr.type="string" for="node" id="HA"/>
|
|
<key attr.name="high_param" attr.type="string" for="node" id="HP"/>
|
|
<key attr.name="master_addrspace" attr.type="string" for="node" id="MA"/>
|
|
<key attr.name="master_instance" attr.type="string" for="node" id="MX"/>
|
|
<key attr.name="master_interface" attr.type="string" for="node" id="MI"/>
|
|
<key attr.name="master_segment" attr.type="string" for="node" id="MS"/>
|
|
<key attr.name="master_vlnv" attr.type="string" for="node" id="MV"/>
|
|
<key attr.name="memory_type" attr.type="string" for="node" id="TM"/>
|
|
<key attr.name="slave_instance" attr.type="string" for="node" id="SX"/>
|
|
<key attr.name="slave_interface" attr.type="string" for="node" id="SI"/>
|
|
<key attr.name="slave_segment" attr.type="string" for="node" id="SS"/>
|
|
<key attr.name="slave_vlnv" attr.type="string" for="node" id="SV"/>
|
|
<key attr.name="usage_type" attr.type="string" for="node" id="TU"/>
|
|
<key attr.name="vert_hid" attr.type="int" for="node" id="VH"/>
|
|
<key attr.name="vert_name" attr.type="string" for="node" id="VM"/>
|
|
<key attr.name="vert_type" attr.type="string" for="node" id="VT"/>
|
|
<graph edgedefault="undirected" id="G" parse.edgeids="canonical" parse.nodeids="canonical" parse.order="nodesfirst">
|
|
<node id="n0">
|
|
<data key="VH">2</data>
|
|
<data key="VM">loopback</data>
|
|
<data key="VT">VR</data>
|
|
</node>
|
|
<node id="n1">
|
|
<data key="VM">loopback</data>
|
|
<data key="VT">BC</data>
|
|
</node>
|
|
<node id="n2">
|
|
<data key="TU">active</data>
|
|
<data key="VH">2</data>
|
|
<data key="VT">PM</data>
|
|
</node>
|
|
<edge id="e0" source="n1" target="n0">
|
|
</edge>
|
|
<edge id="e1" source="n0" target="n2">
|
|
</edge>
|
|
</graph>
|
|
</graphml>
|