mirror of
https://github.com/jhshi/openofdm.git
synced 2024-12-28 01:29:15 +00:00
93 lines
3.4 KiB
Tcl
93 lines
3.4 KiB
Tcl
|
# The package naming convention is <core_name>_xmdf
|
||
|
package provide deinter_lut_xmdf 1.0
|
||
|
|
||
|
# This includes some utilities that support common XMDF operations
|
||
|
package require utilities_xmdf
|
||
|
|
||
|
# Define a namespace for this package. The name of the name space
|
||
|
# is <core_name>_xmdf
|
||
|
namespace eval ::deinter_lut_xmdf {
|
||
|
# Use this to define any statics
|
||
|
}
|
||
|
|
||
|
# Function called by client to rebuild the params and port arrays
|
||
|
# Optional when the use context does not require the param or ports
|
||
|
# arrays to be available.
|
||
|
proc ::deinter_lut_xmdf::xmdfInit { instance } {
|
||
|
# Variable containg name of library into which module is compiled
|
||
|
# Recommendation: <module_name>
|
||
|
# Required
|
||
|
utilities_xmdf::xmdfSetData $instance Module Attributes Name deinter_lut
|
||
|
}
|
||
|
# ::deinter_lut_xmdf::xmdfInit
|
||
|
|
||
|
# Function called by client to fill in all the xmdf* data variables
|
||
|
# based on the current settings of the parameters
|
||
|
proc ::deinter_lut_xmdf::xmdfApplyParams { instance } {
|
||
|
|
||
|
set fcount 0
|
||
|
# Array containing libraries that are assumed to exist
|
||
|
# Examples include unisim and xilinxcorelib
|
||
|
# Optional
|
||
|
# In this example, we assume that the unisim library will
|
||
|
# be magically
|
||
|
# available to the simulation and synthesis tool
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type logical_library
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount logical_library unisim
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path blk_mem_gen_ds512.pdf
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type AnyView
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path blk_mem_gen_readme.txt
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type text
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path deinter_lut.asy
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type asy
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path deinter_lut.mif
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type AnyView
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path deinter_lut.ngc
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type ngc
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path deinter_lut.sym
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type symbol
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path deinter_lut.v
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type verilog
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path deinter_lut.veo
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type verilog_template
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path deinter_lut.vhd
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type vhdl
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path deinter_lut.vho
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type vhdl_template
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path deinter_lut.xco
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type coregen_ip
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount relative_path deinter_lut_xmdf.tcl
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount type AnyView
|
||
|
incr fcount
|
||
|
|
||
|
utilities_xmdf::xmdfSetData $instance FileSet $fcount associated_module deinter_lut
|
||
|
incr fcount
|
||
|
|
||
|
}
|
||
|
|
||
|
# ::gen_comp_name_xmdf::xmdfApplyParams
|