Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
combpm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DG
FOFB
combpm
Compare revisions
245b2a9713e2168561732ccf3b12c0f5a67778eb to 2236d2756eae7892d1a1f459bad233edb7bdb2b7
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
dg/fofb/com_bpm
Select target project
No results found
2236d2756eae7892d1a1f459bad233edb7bdb2b7
Select Git revision
Loading items
Swap
Target
dg/fofb/com_bpm
Select target project
dg/fofb/com_bpm
1 result
245b2a9713e2168561732ccf3b12c0f5a67778eb
Select Git revision
Loading items
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tcl/main.tcl
+61
-0
61 additions, 0 deletions
tcl/main.tcl
with
61 additions
and
0 deletions
tcl/main.tcl
0 → 100644
View file @
2236d275
################################################################################
# Main tcl for the module
################################################################################
# ==============================================================================
proc init
{}
{
# Configuration
# TODO Follow FWK
# variable quad_name
# set quad_name X0Y4
}
# ==============================================================================
proc setSources
{}
{
variable Vhdl
# Generate VHDL package with modversion
genModVerFile VHDL ../hdl/pkg_combpm_version.vhd
lappend Vhdl ../hdl/pkg_combpm_version.vhd
lappend Vhdl ../hdl/combpm_protocol_electron.vhd
lappend Vhdl ../hdl/top_combpm_electron.vhd
lappend Vhdl ../hdl/pkg_bpmpacket_stream.vhd
lappend Vhdl ../hdl/combpm_packet_filter.vhd
}
# ==============================================================================
proc setAddressSpace
{}
{
variable AddressSpace
addAddressSpace AddressSpace
"combpm"
RDL
{}
../rdl/combpm.rdl
}
# ==============================================================================
proc doOnCreate
{}
{
# This module is only for vivado tool. End here for another tooltype.
if
{
$::fwfwk::
ToolType ne
"vivado"
}
{
puts
"
\n
[
ERROR
]
This module is only configured to work with Vivado"
exit -1
}
# Create GT wizard IP
set_property part $
{
::fwfwk::FpgaPart
}
[
current_project
]
set_property target_language VHDL
[
current_project
]
source combpm_gtwizard.tcl
source generate_combpm_packet_filter_ip.tcl
variable Vhdl
addSources Vhdl
}
# ==============================================================================
proc doOnBuild
{}
{
}
# ==============================================================================
proc setSim
{}
{
}
This diff is collapsed.
Click to expand it.
Prev
1
2
Next