OpenCores
URL https://opencores.org/ocsvn/usb_fpga_1_11/usb_fpga_1_11/trunk

Subversion Repositories usb_fpga_1_11

[/] [usb_fpga_1_11/] [trunk/] [examples/] [usb-fpga-1.2/] [ucecho/] [fpga/] [ucecho.ise] - Diff between revs 2 and 3

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 2 Rev 3
PK
PK

__OBJSTORE__/PK

__OBJSTORE__/PK
__OBJSTORE__/Autonym/PK
 __OBJSTORE__/HierarchicalDesign/PK
__OBJSTORE__/ConstraintSystem/PK
*__OBJSTORE__/HierarchicalDesign/HDProject/PK
__OBJSTORE__/Cs/PK
3__OBJSTORE__/HierarchicalDesign/HDProject/HDProjectucecho_prev_built.ngdPK
 __OBJSTORE__/HierarchicalDesign/PK
ASS:__OBJSTORE__/HierarchicalDesign/HDProject/HDProject_StrTbl    20/ucechoTS_EXPANDEDTS_FRAGCOVEREDTS_PACKEDTS_ROUTEDTS_SYNTHESISPK
*__OBJSTORE__/HierarchicalDesign/HDProject/PK
";<<7__OBJSTORE__/HierarchicalDesign/__stored_object_table__(:PK
3__OBJSTORE__/HierarchicalDesign/HDProject/HDProjectucecho_prev_built.ngdPK
__OBJSTORE__/ProjectNavigator/PK
ASS:__OBJSTORE__/HierarchicalDesign/HDProject/HDProject_StrTbl    20/ucechoTS_EXPANDEDTS_FRAGCOVEREDTS_PACKEDTS_ROUTEDTS_SYNTHESISPK
/__OBJSTORE__/ProjectNavigator/dpm_project_main/PK
";<<7__OBJSTORE__/HierarchicalDesign/__stored_object_table__(:PK
p"?__OBJSTORE__/ProjectNavigator/dpm_project_main/dpm_project_mainPK
__OBJSTORE__/PnAutoRun/PK
9
__OBJSTORE__/PnAutoRun/Scripts/PK
>*__OBJSTORE__/PnAutoRun/Scripts/RunOnce_tclPK
F__OBJSTORE__/ProjectNavigator/dpm_project_main/dpm_project_main_StrTblPK
髭1__OBJSTORE__/PnAutoRun/Scripts/RunOnce_tcl_StrTblnamespace eval xilinx {
΢刃versionREPOSITORY_VERSION
namespace eval Dpm {
1.1
proc GetIseVersion {} {
REGISTRY_VERSION
   set fsetName "fileset.txt"
1.1
   set fsetPath ""
OBJSTORE_VERSION
   # Find the file in the Xilinx environment.
1.3
   # First, construct the environment path.
ISE_VERSION_CREATED_WITH
   set sep ":"; # Default to UNIX style seperator.
9.1.03i
   if {[string compare -length 7 $::tcl_platform(platform) "windows"] == 0} {
ISE_VERSION_LAST_SAVED_WITH
      set sep ";"; # Platform is a Windows variant, so use semi-colon.
11.4
   }
 
   set xilinxPath $::env(XILINX)
 
   if [info exists ::env(MYXILINX)] then {
 
      set xilinxPath [join [list $::env(MYXILINX) $xilinxPath] $sep]
 
   }
 
   # Now look in each path of the path until we find a match.
 
   foreach xilElem [split $xilinxPath $sep] {
 
      set checkPath ${xilElem}/$fsetName
 
      set checkPath [ string map { \\ / } $checkPath ]
 
      if { [file exists $checkPath] } {
 
         set fsetPath $checkPath
 
         break
 
      }
 
   }
 
   if { [string equal $fsetPath ""] } {
 
      puts "ERROR: Can not determine the ISE software version."
 
      return ""
 
   }
 
   if { [catch { open $fsetPath r } fset] } {
 
      puts "ERROR: Could not open $fsetPath: $fset"
 
      return ""
 
   }
 
   # have the file open, scan for the version entry.
 
   set sVersion ""
 
   while { ![eof $fset] } {
 
      set line [gets $fset]
 
      regexp {version=(.*)} $line match sVersion
 
         # The above doesn't stop looking in the file. This assumes that if
 
         # there are multiple version entries, the last one is the one we want.
 
   }
 
   close $fset
 
   return $sVersion
 
}
 
proc CheckForIron {project_name} {
 
 
   # Determine if the currently running version of ProjNav is earlier than Jade.
 
   set version [GetIseVersion]
 
   set dotLocation [string first "." $version]
 
   set versionBase [string range $version 0 [expr {$dotLocation - 1}]]
 
   if {$versionBase < 9} {
 
 
      # The project file is newer than Iron, so take action to prevent the
 
      # file from being corrupted.
 
      # Make the file read-only.
 
      if {[string compare -length 7 $::tcl_platform(platform) "windows"]} {
 
         # The above will return 0 for a match to "windows" or "windows64".
 
         # This is the non-zero part of the if, for lin and sol.
 
         # Change the permissions to turn off writability.
 
         file attributes $project_name -permissions a-w
 
      } else {
 
         # On Windows, set file to read-only.
 
         file attributes $project_name -readonly 1
 
      }
 
 
      # And tell the user about it.
 
      set messageText "WARNING: This project was last saved with a newer version of Project Navigator.\nThe project file will be made read-only so that it will not be invalidated by this version."
 
      # In the console window
 
      puts $messageText
 
      # And with a GUI message box if possible.
 
      ::xilinx::Dpm::TOE::loadGuiLibraries
 
      set iInterface 0
 
      set messageDisplay 0
 
      if {[catch {
 
         set iInterface [Xilinx::CitP::GetInstance $::xilinx::GuiI::IMessageDlgID]
 
         set messageDisplay [$iInterface GetInterface $::xilinx::GuiI::IMessageDlgID]
 
         if {$messageDisplay != 0} {
 
            # Managed to get a component to display a dialog, so use it
 
            set messageTitle "Incompatible Project Version (Newer)"
 
            set messageType 2
 
               # 2 corresponds to a warning dialog. TclWrapGuiI_Init.cpp doesn't put the enum into Tcl.
 
            set messageTimeout 300000
 
               # in milliseconds, 5 minutes
 
            set messageReturn [$messageDisplay MessageDlg $messageTitle $messageText $messageType 1 1 $messageTimeout "OK" "" ""]
 
         }
 
      } catchResult]} {
 
         # There was an error, probably because we aren't in a GUI enviroment.
 
      } else {
 
         # All is well.
 
      }
 
      set messageDisplay 0
 
      set iInterface 0
 
   }
 
 
   return 1
 
}
 
}
 
}
 
::xilinx::Dpm::CheckForIronPK
 
__OBJSTORE__/ProjectNavigator/PK
 
/__OBJSTORE__/ProjectNavigator/dpm_project_main/PK
 
p"?__OBJSTORE__/ProjectNavigator/dpm_project_main/dpm_project_mainPK
 
9
 
 
F__OBJSTORE__/ProjectNavigator/dpm_project_main/dpm_project_main_StrTblPK
 
 __OBJSTORE__/ProjectNavigator11/PK
 
!__OBJSTORE__/ProjectNavigatorGui/PK
 
p=;;3__OBJSTORE__/ProjectNavigatorGui/CSourceProcessViewMPK
 
9
 
 
:__OBJSTORE__/ProjectNavigatorGui/CSourceProcessView_StrTblPK
 
4!d.__OBJSTORE__/ProjectNavigatorGui/CViewSelectorPK
 
"z5__OBJSTORE__/ProjectNavigatorGui/CViewSelector_StrTblImplementationPK
 
*JJ3__OBJSTORE__/ProjectNavigatorGui/File-SynthesisOnlysPK
 
o#B*NN:__OBJSTORE__/ProjectNavigatorGui/File-SynthesisOnly_StrTbl/drv_s2/usb-fpga/ztex/examples/usb-fpga-1.2/ucecho/fpga/ucecho.ucfPK
 
d/__OBJSTORE__/ProjectNavigatorGui/GuiProjectData
 
PK
 
J
 
))6__OBJSTORE__/ProjectNavigatorGui/GuiProjectData_StrTblArchitecture|ucecho|RTLucecho - RTL (ucecho.vhd)xc3s400-4tq144Design UtilitiesDESUT_VHDL_ARCHITECTUREGenerate Programming FileImplement Design/MapImplement Design/Place & RouteImplement Design/TranslateSynthesize - XST/Generate Post-Synthesis Simulation ModelUser ConstraintsPK
 
AL@@6__OBJSTORE__/ProjectNavigatorGui/Library-SynthesisOnlyPK
 
      ?=__OBJSTORE__/ProjectNavigatorGui/Library-SynthesisOnly_StrTblworkverilogPK
 
HH7__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-PK
 
HHN__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTUREPK
 
Fu݁U__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTURE_StrTblConfigure Target DeviceDesign UtilitiesImplement DesignSynthesize - XSTUser ConstraintsGenerate Programming FilePK
 
{{>__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-_StrTblConfigure Target DeviceDesign UtilitiesImplement DesignSynthesize - XSTUser ConstraintsAdd Existing SourcePK
 
mNNA__OBJSTORE__/ProjectNavigatorGui/Source-SynthesisOnly-AutoCompileLPK
 
r]]H__OBJSTORE__/ProjectNavigatorGui/Source-SynthesisOnly-AutoCompile_StrTblucecho - RTL (/drv_s2/usb-fpga/ztex/examples/usb-fpga-1.2/ucecho/fpga/ucecho.vhd)PK
 
__OBJSTORE__/SrcCtrl/PK
 
"__OBJSTORE__/SrcCtrl/SavedOptions/PK
 
 __OBJSTORE__/_ProjRepoInternal_/PK
 
__OBJSTORE__/common/PK
 
'__OBJSTORE__/common/HierarchicalDesign/PK
 
T†~~0__OBJSTORE__/common/HierarchicalDesign/HDProject    PK
 
7ZZ7__OBJSTORE__/common/HierarchicalDesign/HDProject_StrTbl
 
14/ucechoTS_EXPANDEDTS_FRAGCOVEREDTS_PACKEDTS_ROUTEDTS_SYNTHESISucechoPK
 
";<<+__OBJSTORE__/common/__stored_object_table__(:PK
 
__OBJSTORE__/xreport/PK
 
>5__OBJSTORE__/xreport/Gc_RvReportViewer-Current-ModulePK
 
<__OBJSTORE__/xreport/Gc_RvReportViewer-Current-Module_StrTblucechoPK
 
֞1B__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-Factory-Defaultj
 

 !"#$%&'()*+,-./0123456789:;<=>?@ABC*DEF*GHIJK*LMNOPQRSTUVWXYZPK
 
D  I__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-Factory-Default_StrTbl[ 
Tue, 05 Sep 2006 12:00:00 PST Unknown
PK
 
{
9__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-ucecho
 

 !"#$%&'(*+,-./012356789:;<=>?@ABCDEFGHIJKNOPQRSTUVWXYZ[\]^_`abcOdeQfghiOjklmnopqrstOuvwOxyz{|T}T~TOOOTOTPK
 
9EEEE@__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-ucecho_StrTbl 
2010-06-10T11:14:59 ucecho Unknown 2010-06-10T11:14:59
 
QA__OBJSTORE__/xreport/Gc_RvReportViewer-Module-DataFactory-Default
 

 !"#$%&'!()*+,-./012!3456789:;<=>?@ABCDEFGHIJKLMNOPQRSLTUVWXYZ[\]^_`abcLdPefghijLkPlmLnopqrLstuLvPwxLyPz{L!|}~ULULLPLPLLULPLLLULLLL!PK
 
7@H@HH__OBJSTORE__/xreport/Gc_RvReportViewer-Module-DataFactory-Default_StrTbl
Wed, 18 June 2008, 10:00:00 MDT Unknown Unknown
PK
 

__REGISTRY__/PK
 
__REGISTRY__/Autonym/PK
 
__REGISTRY__/Autonym/regkeysPK
 
__REGISTRY__/ConstraintSystem/PK
 
%__REGISTRY__/ConstraintSystem/regkeysPK
 
__REGISTRY__/Cs/PK
 
__REGISTRY__/Cs/regkeysPK
 
 __REGISTRY__/HierarchicalDesign/PK
 
*__REGISTRY__/HierarchicalDesign/HDProject/PK
 
{GG1__REGISTRY__/HierarchicalDesign/HDProject/regkeysCommandLine-Map
 
 
s
 
CommandLine-Ngdbuild
 
/drv_s3/xilinx-11.1/ISE/bin/lin/unwrapped/ngdbuild -ise ucecho.ise -intstyle ise -dd _ngo -nt timestamp -i -p xc3s400-tq144-4 ucecho.ngc ucecho.ngd
 
s
 
CommandLine-Par
 
 
s
 
CommandLine-Xst
 
 
s
 
Previous-NGD
 
ucecho_prev_built.ngd
 
s
 
Previous-NGM
 
 
s
 
Previous-Packed-NCD
 
 
s
 
Previous-Routed-NCD
 
 
s
 
PK
 
'__REGISTRY__/HierarchicalDesign/regkeysPK
 
__REGISTRY__/ProjectNavigator/PK
 
H##%__REGISTRY__/ProjectNavigator/regkeysISE_VERSION_LAST_SAVED_WITH
 
11.4
 
s
 
PK
 
 __REGISTRY__/ProjectNavigator11/PK
 
l/;;'__REGISTRY__/ProjectNavigator11/regkeysISE_VERSION_LAST_SAVED_WITH
 
11.4
 
s
 
XISE_FILE
 
ucecho.xise
 
s
 
PK
 
!__REGISTRY__/ProjectNavigatorGui/PK
 
(__REGISTRY__/ProjectNavigatorGui/regkeysPK
 
__REGISTRY__/SrcCtrl/PK
 
__REGISTRY__/SrcCtrl/regkeysPK
 
__REGISTRY__/XSLTProcess/PK
 
q33 __REGISTRY__/XSLTProcess/regkeysClientMessageOutputFile
 
_xmsgs/XSLTProcess.xmsgs
 
s
 
PK
 
 __REGISTRY__/_ProjRepoInternal_/PK
 
35'__REGISTRY__/_ProjRepoInternal_/regkeysISE_VERSION_CREATED_WITH
 
9.1.03i
 
s
 
ISE_VERSION_LAST_SAVED_WITH
 
11.4
 
s
 
LastRepoDir
 
/drv_s2/usb-fpga/ztex/examples/usb-fpga-1.2/ucecho/fpga/
 
s
 
OBJSTORE_VERSION
 
1.3
 
s
 
PROJECT_CREATION_TIMESTAMP
 
UNINITIALIZED
 
s
 
REGISTRY_VERSION
 
1.1
 
s
 
REPOSITORY_VERSION
 
1.1
 
s
 
PK
 
__REGISTRY__/bitgen/PK
 
6..__REGISTRY__/bitgen/regkeysClientMessageOutputFile
 
_xmsgs/bitgen.xmsgs
 
s
 
PK
 
__REGISTRY__/common/PK
 
;-4__REGISTRY__/common/regkeysIncrementalMessagingEnabled
 
false
 
s
 
MessageCaptureEnabled
 
true
 
s
 
MessageFilterFile
 
filter.filter
 
s
 
MessageFilteringEnabled
 
false
 
s
 
RunOnce
 
#/PnAutoRun/Scripts/RunOnce_tcl
 
s
 
PK
 
__REGISTRY__/cpldfit/PK
 
S//__REGISTRY__/cpldfit/regkeysClientMessageOutputFile
 
_xmsgs/cpldfit.xmsgs
 
s
 
PK
 
__REGISTRY__/dumpngdio/PK
 
Nu11__REGISTRY__/dumpngdio/regkeysClientMessageOutputFile
 
_xmsgs/dumpngdio.xmsgs
 
s
 
PK
 
__REGISTRY__/fuse/PK
 
!6,,__REGISTRY__/fuse/regkeysClientMessageOutputFile
 
_xmsgs/fuse.xmsgs
 
s
 
PK
 
__REGISTRY__/hprep6/PK
 
a..__REGISTRY__/hprep6/regkeysClientMessageOutputFile
 
_xmsgs/hprep6.xmsgs
 
s
 
PK
 
__REGISTRY__/idem/PK
 
,,__REGISTRY__/idem/regkeysClientMessageOutputFile
 
_xmsgs/idem.xmsgs
 
s
 
PK
 
__REGISTRY__/map/PK
 
[++__REGISTRY__/map/regkeysClientMessageOutputFile
 
_xmsgs/map.xmsgs
 
s
 
PK
 
__REGISTRY__/netgen/PK
 
e6~..__REGISTRY__/netgen/regkeysClientMessageOutputFile
 
_xmsgs/netgen.xmsgs
 
s
 
PK
 
__REGISTRY__/ngc2edif/PK
 
OUś00__REGISTRY__/ngc2edif/regkeysClientMessageOutputFile
 
_xmsgs/ngc2edif.xmsgs
 
s
 
PK
 
__REGISTRY__/ngcbuild/PK
 
E00__REGISTRY__/ngcbuild/regkeysClientMessageOutputFile
 
_xmsgs/ngcbuild.xmsgs
 
s
 
PK
 
__REGISTRY__/ngdbuild/PK
 
Jx00__REGISTRY__/ngdbuild/regkeysClientMessageOutputFile
 
_xmsgs/ngdbuild.xmsgs
 
s
 
PK
 
__REGISTRY__/par/PK
 
++__REGISTRY__/par/regkeysClientMessageOutputFile
 
_xmsgs/par.xmsgs
 
s
 
PK
 
__REGISTRY__/runner/PK
 
p7..__REGISTRY__/runner/regkeysClientMessageOutputFile
 
_xmsgs/runner.xmsgs
 
s
 
PK
 
__REGISTRY__/taengine/PK
 
00__REGISTRY__/taengine/regkeysClientMessageOutputFile
 
_xmsgs/taengine.xmsgs
 
s
 
PK
 
__REGISTRY__/trce/PK
 

 
,,__REGISTRY__/trce/regkeysClientMessageOutputFile
 
_xmsgs/trce.xmsgs
 
s
 
PK
 
__REGISTRY__/tsim/PK
 
\-`,,__REGISTRY__/tsim/regkeysClientMessageOutputFile
 
_xmsgs/tsim.xmsgs
 
s
 
PK
 
__REGISTRY__/vhpcomp/PK
 
Di//__REGISTRY__/vhpcomp/regkeysClientMessageOutputFile
 
_xmsgs/vhpcomp.xmsgs
 
s
 
PK
 
__REGISTRY__/vlogcomp/PK
 
]00__REGISTRY__/vlogcomp/regkeysClientMessageOutputFile
 
_xmsgs/vlogcomp.xmsgs
 
s
 
PK
 
__REGISTRY__/xreport/PK
 
__REGISTRY__/xreport/regkeysPK
 
__REGISTRY__/xst/PK
 
++__REGISTRY__/xst/regkeysClientMessageOutputFile
 
_xmsgs/xst.xmsgs
 
s
 
PK
 
΢刃versionREPOSITORY_VERSION
 
1.1
 
REGISTRY_VERSION
 
1.1
 
OBJSTORE_VERSION
 
1.3
 
ISE_VERSION_CREATED_WITH
 
9.1.03i
 
ISE_VERSION_LAST_SAVED_WITH
 
11.4
 
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.