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

Subversion Repositories gecko3

[/] [gecko3/] [trunk/] [GECKO3COM/] [gecko3com-ip/] [core/] [GECKO3COM_simple_prototype.ise] - Diff between revs 22 and 23

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

Rev 22 Rev 23
PK
PK
.svn/PK

__OBJSTORE__/PK
.svn/prop-base/PK
__OBJSTORE__/Autonym/PK
.svn/props/PK
 __OBJSTORE__/HierarchicalDesign/PK
.svn/text-base/PK
*__OBJSTORE__/HierarchicalDesign/HDProject/PK
   .svn/tmp/PK
է3__OBJSTORE__/HierarchicalDesign/HDProject/HDProjectPK
.svn/tmp/prop-base/PK
NG&&:__OBJSTORE__/HierarchicalDesign/HDProject/HDProject_StrTbl20/GECKO3COM_simple_testPK
.svn/tmp/props/PK
";<<7__OBJSTORE__/HierarchicalDesign/__stored_object_table__(:PK
.svn/tmp/text-base/PK
__OBJSTORE__/PnAutoRun/PK
ld!!.svn/entries10
__OBJSTORE__/PnAutoRun/Scripts/PK
>*__OBJSTORE__/PnAutoRun/Scripts/RunOnce_tclPK
dir
髭1__OBJSTORE__/PnAutoRun/Scripts/RunOnce_tcl_StrTblnamespace eval xilinx {
0
namespace eval Dpm {
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise
proc GetIseVersion {} {
http://opencores.org/ocsvn/gecko3
   set fsetName "fileset.txt"
add
   set fsetPath ""
   # Find the file in the Xilinx environment.
   # First, construct the environment path.
   set sep ":"; # Default to UNIX style seperator.
   if {[string compare -length 7 $::tcl_platform(platform) "windows"] == 0} {
      set sep ";"; # Platform is a Windows variant, so use semi-colon.
   }
   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
      }
   }
90781beb-4edd-4d2c-84bc-0b11c8820640
   if { [string equal $fsetPath ""] } {

      puts "ERROR: Can not determine the ISE software version."
__OBJSTORE__
      return ""
dir
   }
   if { [catch { open $fsetPath r } fset] } {
      puts "ERROR: Could not open $fsetPath: $fset"
      return ""
add
   }

   # have the file open, scan for the version entry.
__REGISTRY__
   set sVersion ""
dir
   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
add
         # there are multiple version entries, the last one is the one we want.

   }
version
   close $fset
file
   return $sVersion
}
proc CheckForIron {project_name} {
add
   # Determine if the currently running version of ProjNav is earlier than Jade.

   set version [GetIseVersion]
PK
   set dotLocation [string first "." $version]

__OBJSTORE__/PK
   set versionBase [string range $version 0 [expr {$dotLocation - 1}]]
__OBJSTORE__/.svn/PK
   if {$versionBase < 9} {
__OBJSTORE__/.svn/prop-base/PK
__OBJSTORE__/.svn/props/PK
      # The project file is newer than Iron, so take action to prevent the
__OBJSTORE__/.svn/text-base/PK
      # file from being corrupted.
__OBJSTORE__/.svn/tmp/PK
      # Make the file read-only.
 __OBJSTORE__/.svn/tmp/prop-base/PK
      if {[string compare -length 7 $::tcl_platform(platform) "windows"]} {
__OBJSTORE__/.svn/tmp/props/PK
         # The above will return 0 for a match to "windows" or "windows64".
 __OBJSTORE__/.svn/tmp/text-base/PK
         # This is the non-zero part of the if, for lin and sol.
&?-__OBJSTORE__/.svn/entries10
         # Change the permissions to turn off writability.
         file attributes $project_name -permissions a-w
dir
      } else {
0
         # On Windows, set file to read-only.
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__OBJSTORE__
         file attributes $project_name -readonly 1
http://opencores.org/ocsvn/gecko3
      }
add
      # 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" "" ""]
90781beb-4edd-4d2c-84bc-0b11c8820640
         }

      } catchResult]} {
ProjectNavigator
         # There was an error, probably because we aren't in a GUI enviroment.
dir
      } else {
         # All is well.
      }
      set messageDisplay 0
add
      set iInterface 0

   }
xreport
dir
   return 1
}
}
}
add
::xilinx::Dpm::CheckForIronPK

__OBJSTORE__/ProjectNavigator/PK
ProjectNavigator11
/__OBJSTORE__/ProjectNavigator/dpm_project_main/PK
dir
p"?__OBJSTORE__/ProjectNavigator/dpm_project_main/dpm_project_mainPK
9
F__OBJSTORE__/ProjectNavigator/dpm_project_main/dpm_project_main_StrTblPK
add
 __OBJSTORE__/ProjectNavigator11/PK

!__OBJSTORE__/ProjectNavigatorGui/PK
ProjectNavigatorGui
4!d.__OBJSTORE__/ProjectNavigatorGui/CViewSelectorPK
dir
"z5__OBJSTORE__/ProjectNavigatorGui/CViewSelector_StrTblImplementationPK

AA3__OBJSTORE__/ProjectNavigatorGui/File-SynthesisOnlyaPK
4!!:__OBJSTORE__/ProjectNavigatorGui/File-SynthesisOnly_StrTblGECKO3COM_defines.vhdPK
|e==6__OBJSTORE__/ProjectNavigatorGui/Library-SynthesisOnly$PK
add
O=__OBJSTORE__/ProjectNavigatorGui/Library-SynthesisOnly_StrTblverilogPK

%UEE7__OBJSTORE__/ProjectNavigatorGui/Process-BehavioralSim-PK
HierarchicalDesign
%UEEN__OBJSTORE__/ProjectNavigatorGui/Process-BehavioralSim-DESUT_VHDL_ARCHITECTUREPK
dir
FU__OBJSTORE__/ProjectNavigatorGui/Process-BehavioralSim-DESUT_VHDL_ARCHITECTURE_StrTblConfigure Target DeviceDesign UtilitiesDesign Utilities/Compile HDL Simulation LibrariesImplement DesignBehavioral Check SyntaxPK
9Lll>__OBJSTORE__/ProjectNavigatorGui/Process-BehavioralSim-_StrTblConfigure Target DeviceDesign UtilitiesImplement DesignModelSim SimulatorAdd Existing SourcePK

DV??6__OBJSTORE__/ProjectNavigatorGui/Process-PostRouteSim-PK
j00=__OBJSTORE__/ProjectNavigatorGui/Process-PostRouteSim-_StrTblDesign UtilitiesAdd Existing SourcePK
add
.ZCC7__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-PK

!KъAA@__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_UCFPK
common
I44G__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_UCF_StrTblConfigure Target DeviceImplement DesignPK
dir
#P/YGGN__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTUREPK
xzU__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTURE_StrTblCORE GeneratorConfigure Target DeviceDesign Utilities/Compile HDL Simulation LibrariesImplement DesignModelSim SimulatorPK
AA@__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_XCOPK
``G__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_XCO_StrTblCORE GeneratorDesign Utilities/Compile HDL Simulation LibrariesAdd Existing SourcePK
add
?Z     zz>__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-_StrTblConfigure Target DeviceDesign Utilities/Compile HDL Simulation LibrariesImplement DesignAdd Existing SourcePK

"WWA__OBJSTORE__/ProjectNavigatorGui/Source-BehavioralSim-AutoCompilePK
PnAutoRun
'ܤ!H__OBJSTORE__/ProjectNavigatorGui/Source-BehavioralSim-AutoCompile_StrTbl/GECKO3COM_loopback - loopback/GPIF_INTERFACE - gpif_com - structure/F_IN - fifo_dualclock - wrapper/GECKO3COM_loopback - loopback/GPIF_INTERFACE - gpif_com - structure/F_OUT - fifo_dualclock - wrapper/gpif_com_test - behaviour/GPIF_INTERFACE - gpif_com - structure/F_IN - fifo_dualclock - wrapper/gpif_com_test - behaviour/GPIF_INTERFACE - gpif_com - structure/F_OUT - fifo_dualclock - wrapper/gpif_com_test_tb - simulationGECKO3COM_simple - Behavioral (GECKO3COM_simple.vhd)PK
dir
H˽OO@__OBJSTORE__/ProjectNavigatorGui/Source-PostRouteSim-AutoCompilePK
\^[EEG__OBJSTORE__/ProjectNavigatorGui/Source-PostRouteSim-AutoCompile_StrTbl/gpif_com_test_tb - simulationGECKO3COM_simple_prototypePK

add
PK

x5@H__OBJSTORE__/ProjectNavigatorGui/Source-SynthesisOnly-AutoCompile_StrTbl/GECKO3COM_loopback - loopback/GPIF_INTERFACE - gpif_com - structure/F_IN - fifo_dualclock - wrapper/GECKO3COM_loopback - loopback/GPIF_INTERFACE - gpif_com - structure/F_OUT - fifo_dualclock - wrapper/GECKO3COM_simple_test - behavour/GECKO3COM_simple_1 - GECKO3COM_simple - Behavioral/GECKO3COM_simple_datapath_1 - GECKO3COM_simple_datapath - behaviour/GECKO3COM_simple_test - behavour/GECKO3COM_simple_1 - GECKO3COM_simple - Behavioral/GPIF_INTERFACE - gpif_com - structure/gpif_com_test - behaviour/GPIF_INTERFACE - gpif_com - structure/F_IN - fifo_dualclock - wrapper/gpif_com_test - behaviour/GPIF_INTERFACE - gpif_com - structure/F_OUT - fifo_dualclock - wrapper/gpif_com_test - loopback/GPIF_INTERFACE - gpif_com - structure/F_IN - fifo_dualclock - wrapper/gpif_com_test - loopback/GPIF_INTERFACE - gpif_com - structure/F_OUT - fifo_dualclock - wrapper/gpif_com_test_tb - simulationGECKO3COM_simple_fsm_1 - GECKO3COM_simple_fsm - fsm (GECKO3COM_simple_fsm.vhd)PK
_ProjRepoInternal_
 __OBJSTORE__/_ProjRepoInternal_/PK
dir
__OBJSTORE__/common/PK
__OBJSTORE__/xreport/PK
>5__OBJSTORE__/xreport/Gc_RvReportViewer-Current-ModulePK
E(!!<__OBJSTORE__/xreport/Gc_RvReportViewer-Current-Module_StrTblGECKO3COM_simple_testPK
add
[

}}H__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-GECKO3COM_simple_test
Autonym

 !"#$%&')*+,-./012456789:;<=@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK
dir
V>@>@O__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-GECKO3COM_simple_test_StrTbl 
2010-02-12T09:53:15 GECKO3COM_simple_test Unknown 2010-02-12T09:53:15
ێA__OBJSTORE__/xreport/Gc_RvReportViewer-Module-DataFactory-Default

 !"#$%&!'()*+,-./01!23456789:;<=>?@A4BCD>E4FGHIJKLMNOPQRS>T4UVWXYZ>[4\]>^_`ab>cde>f4gh>i4jk>!lmn4>o4>pq4rs>tuvw>x4>y4>z{|}>~>4>>>>!PK
$`=`=H__OBJSTORE__/xreport/Gc_RvReportViewer-Module-DataFactory-Default_StrTbl
Wed, 18 June 2008, 10:00:00 MDT Unknown Unknown
PK
add

__REGISTRY__/PK

__REGISTRY__/Autonym/PK
PK
__REGISTRY__/Autonym/regkeysPK
__OBJSTORE__/Autonym/PK
 __REGISTRY__/HierarchicalDesign/PK
__OBJSTORE__/Autonym/.svn/PK
*__REGISTRY__/HierarchicalDesign/HDProject/PK
$__OBJSTORE__/Autonym/.svn/prop-base/PK
XR1__REGISTRY__/HierarchicalDesign/HDProject/regkeysCommandLine-Map
 __OBJSTORE__/Autonym/.svn/props/PK
$__OBJSTORE__/Autonym/.svn/text-base/PK
s
__OBJSTORE__/Autonym/.svn/tmp/PK
CommandLine-Ngdbuild
(__OBJSTORE__/Autonym/.svn/tmp/prop-base/PK
$__OBJSTORE__/Autonym/.svn/tmp/props/PK
s
(__OBJSTORE__/Autonym/.svn/tmp/text-base/PK
CommandLine-Par
dfh!__OBJSTORE__/Autonym/.svn/entries10
s
dir
CommandLine-Xst
0
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__OBJSTORE__/Autonym
s
http://opencores.org/ocsvn/gecko3
Previous-NGD
add
s
Previous-NGM
s
Previous-Packed-NCD
s
Previous-Routed-NCD
s
PK
__REGISTRY__/ProjectNavigator/PK
w##%__REGISTRY__/ProjectNavigator/regkeysISE_VERSION_LAST_SAVED_WITH
11.1
s
PK
 __REGISTRY__/ProjectNavigator11/PK
=
OO'__REGISTRY__/ProjectNavigator11/regkeysISE_VERSION_LAST_SAVED_WITH
90781beb-4edd-4d2c-84bc-0b11c8820640
11.1

s
PK
XISE_FILE
#__OBJSTORE__/ExpandedNetlistEngine/PK
GECKO3COM_simple_prototype.xise
 __OBJSTORE__/HierarchicalDesign/PK
s
*__OBJSTORE__/HierarchicalDesign/HDProject/PK
PK
j}53__OBJSTORE__/HierarchicalDesign/HDProject/HDProjectgpif_com_test_prev_built.ngdPK
!__REGISTRY__/ProjectNavigatorGui/PK
Y::__OBJSTORE__/HierarchicalDesign/HDProject/HDProject_StrTbl20/gpif_com_testPK
(__REGISTRY__/ProjectNavigatorGui/regkeysPK
";<<7__OBJSTORE__/HierarchicalDesign/__stored_object_table__(:PK
__REGISTRY__/XSLTProcess/PK
__OBJSTORE__/PnAutoRun/PK
q33 __REGISTRY__/XSLTProcess/regkeysClientMessageOutputFile
__OBJSTORE__/PnAutoRun/.svn/PK
_xmsgs/XSLTProcess.xmsgs
&__OBJSTORE__/PnAutoRun/.svn/prop-base/PK
s
"__OBJSTORE__/PnAutoRun/.svn/props/PK
PK
&__OBJSTORE__/PnAutoRun/.svn/text-base/PK
 __REGISTRY__/_ProjRepoInternal_/PK
 __OBJSTORE__/PnAutoRun/.svn/tmp/PK
\'__REGISTRY__/_ProjRepoInternal_/regkeysISE_VERSION_CREATED_WITH
*__OBJSTORE__/PnAutoRun/.svn/tmp/prop-base/PK
11.1
&__OBJSTORE__/PnAutoRun/.svn/tmp/props/PK
s
*__OBJSTORE__/PnAutoRun/.svn/tmp/text-base/PK
ISE_VERSION_LAST_SAVED_WITH
1#__OBJSTORE__/PnAutoRun/.svn/entries10
11.1
s
dir
LastRepoDir
0
/home/chrigi/bfh-work/GECKO3COM/gecko3com-ip/core/
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__OBJSTORE__/PnAutoRun
s
http://opencores.org/ocsvn/gecko3
OBJSTORE_VERSION
add
1.3
s
PROJECT_CREATION_TIMESTAMP
2009-12-07T11:22:13
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__/bitinit/PK
Л]//__REGISTRY__/bitinit/regkeysClientMessageOutputFile
_xmsgs/bitinit.xmsgs
90781beb-4edd-4d2c-84bc-0b11c8820640
s

PK
Scripts
__REGISTRY__/common/PK
dir
Qp??__REGISTRY__/common/regkeysMessageCaptureEnabled
true
s
MessageFilterFile
add
filter.filter

s
PK
PK
__OBJSTORE__/PnAutoRun/Scripts/PK
__REGISTRY__/cpldfit/PK
$__OBJSTORE__/PnAutoRun/Scripts/.svn/PK
S//__REGISTRY__/cpldfit/regkeysClientMessageOutputFile
.__OBJSTORE__/PnAutoRun/Scripts/.svn/prop-base/PK
_xmsgs/cpldfit.xmsgs
*__OBJSTORE__/PnAutoRun/Scripts/.svn/props/PK
s
1&55>__OBJSTORE__/PnAutoRun/Scripts/.svn/props/RunOnce_tcl.svn-workK 13
PK
svn:mime-type
__REGISTRY__/dumpngdio/PK
V 24
Nu11__REGISTRY__/dumpngdio/regkeysClientMessageOutputFile
application/octet-stream
_xmsgs/dumpngdio.xmsgs
END
s
PK
PK
1&55E__OBJSTORE__/PnAutoRun/Scripts/.svn/props/RunOnce_tcl_StrTbl.svn-workK 13
__REGISTRY__/fuse/PK
svn:mime-type
!6,,__REGISTRY__/fuse/regkeysClientMessageOutputFile
V 24
_xmsgs/fuse.xmsgs
application/octet-stream
s
END
PK
PK
__REGISTRY__/home/PK
.__OBJSTORE__/PnAutoRun/Scripts/.svn/text-base/PK
__REGISTRY__/home/chrigi/PK
(__OBJSTORE__/PnAutoRun/Scripts/.svn/tmp/PK
__REGISTRY__/home/chrigi/bin/PK
2__OBJSTORE__/PnAutoRun/Scripts/.svn/tmp/prop-base/PK
"__REGISTRY__/home/chrigi/bin/11.1/PK
.__OBJSTORE__/PnAutoRun/Scripts/.svn/tmp/props/PK
&__REGISTRY__/home/chrigi/bin/11.1/ISE/PK
2__OBJSTORE__/PnAutoRun/Scripts/.svn/tmp/text-base/PK
*__REGISTRY__/home/chrigi/bin/11.1/ISE/bin/PK
"TEkk+__OBJSTORE__/PnAutoRun/Scripts/.svn/entries10
0__REGISTRY__/home/chrigi/bin/11.1/ISE/bin/lin64/PK
:__REGISTRY__/home/chrigi/bin/11.1/ISE/bin/lin64/unwrapped/PK
dir
B__REGISTRY__/home/chrigi/bin/11.1/ISE/bin/lin64/unwrapped/vhpcomp/PK
0
__REGISTRY__/hprep6/PK
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__OBJSTORE__/PnAutoRun/Scripts
a..__REGISTRY__/hprep6/regkeysClientMessageOutputFile
http://opencores.org/ocsvn/gecko3
_xmsgs/hprep6.xmsgs
add
s
PK
__REGISTRY__/idem/PK
,,__REGISTRY__/idem/regkeysClientMessageOutputFile
_xmsgs/idem.xmsgs
s
PK
__REGISTRY__/libgen/PK
ħ..__REGISTRY__/libgen/regkeysClientMessageOutputFile
_xmsgs/libgen.xmsgs
s
PK
__REGISTRY__/map/PK
[++__REGISTRY__/map/regkeysClientMessageOutputFile
_xmsgs/map.xmsgs
s
PK
__REGISTRY__/netgen/PK
e6~..__REGISTRY__/netgen/regkeysClientMessageOutputFile
_xmsgs/netgen.xmsgs
90781beb-4edd-4d2c-84bc-0b11c8820640
s

PK
RunOnce_tcl_StrTbl
__REGISTRY__/ngc2edif/PK
file
OUś00__REGISTRY__/ngc2edif/regkeysClientMessageOutputFile
_xmsgs/ngc2edif.xmsgs
s
PK
add
__REGISTRY__/ngcbuild/PK
E00__REGISTRY__/ngcbuild/regkeysClientMessageOutputFile
_xmsgs/ngcbuild.xmsgs
s
PK
__REGISTRY__/ngdbuild/PK
has-props
Jx00__REGISTRY__/ngdbuild/regkeysClientMessageOutputFile
has-prop-mods
_xmsgs/ngdbuild.xmsgs

s
RunOnce_tcl
PK
file
__REGISTRY__/par/PK
++__REGISTRY__/par/regkeysClientMessageOutputFile
_xmsgs/par.xmsgs
s
add
PK
__REGISTRY__/platgen/PK
t//__REGISTRY__/platgen/regkeysClientMessageOutputFile
_xmsgs/platgen.xmsgs
s
PK
has-props
__REGISTRY__/runner/PK
has-prop-mods
p7..__REGISTRY__/runner/regkeysClientMessageOutputFile

_xmsgs/runner.xmsgs
PK
s
>*__OBJSTORE__/PnAutoRun/Scripts/RunOnce_tclPK
PK
髭1__OBJSTORE__/PnAutoRun/Scripts/RunOnce_tcl_StrTblnamespace eval xilinx {
__REGISTRY__/simgen/PK
namespace eval Dpm {
9M=..__REGISTRY__/simgen/regkeysClientMessageOutputFile
proc GetIseVersion {} {
_xmsgs/simgen.xmsgs
   set fsetName "fileset.txt"
s
   set fsetPath ""
PK
   # Find the file in the Xilinx environment.
__REGISTRY__/taengine/PK
   # First, construct the environment path.
00__REGISTRY__/taengine/regkeysClientMessageOutputFile
   set sep ":"; # Default to UNIX style seperator.
_xmsgs/taengine.xmsgs
   if {[string compare -length 7 $::tcl_platform(platform) "windows"] == 0} {
s
      set sep ";"; # Platform is a Windows variant, so use semi-colon.
PK
   }
__REGISTRY__/trce/PK
   set xilinxPath $::env(XILINX)

   if [info exists ::env(MYXILINX)] then {
,,__REGISTRY__/trce/regkeysClientMessageOutputFile
      set xilinxPath [join [list $::env(MYXILINX) $xilinxPath] $sep]
_xmsgs/trce.xmsgs
   }
s
   # Now look in each path of the path until we find a match.
PK
   foreach xilElem [split $xilinxPath $sep] {
__REGISTRY__/tsim/PK
      set checkPath ${xilElem}/$fsetName
\-`,,__REGISTRY__/tsim/regkeysClientMessageOutputFile
      set checkPath [ string map { \\ / } $checkPath ]
_xmsgs/tsim.xmsgs
      if { [file exists $checkPath] } {
s
         set fsetPath $checkPath
PK
         break
__REGISTRY__/vhpcomp/PK
      }
Di//__REGISTRY__/vhpcomp/regkeysClientMessageOutputFile
   }
_xmsgs/vhpcomp.xmsgs
   if { [string equal $fsetPath ""] } {
s
      puts "ERROR: Can not determine the ISE software version."
PK
      return ""
__REGISTRY__/vlogcomp/PK
   }
]00__REGISTRY__/vlogcomp/regkeysClientMessageOutputFile
   if { [catch { open $fsetPath r } fset] } {
_xmsgs/vlogcomp.xmsgs
      puts "ERROR: Could not open $fsetPath: $fset"
s
      return ""
PK
   }
__REGISTRY__/xpwr/PK
   # have the file open, scan for the version entry.
H,,,__REGISTRY__/xpwr/regkeysClientMessageOutputFile
   set sVersion ""
_xmsgs/xpwr.xmsgs
   while { ![eof $fset] } {
s
      set line [gets $fset]
PK
      regexp {version=(.*)} $line match sVersion
__REGISTRY__/xreport/PK
         # The above doesn't stop looking in the file. This assumes that if
__REGISTRY__/xreport/regkeysPK
         # there are multiple version entries, the last one is the one we want.
__REGISTRY__/xst/PK
   }
++__REGISTRY__/xst/regkeysClientMessageOutputFile
   close $fset
_xmsgs/xst.xmsgs
   return $sVersion
s
}
PK
proc CheckForIron {project_name} {
V]versionREPOSITORY_VERSION
1.1
   # Determine if the currently running version of ProjNav is earlier than Jade.
REGISTRY_VERSION
   set version [GetIseVersion]
1.1
   set dotLocation [string first "." $version]
OBJSTORE_VERSION
   set versionBase [string range $version 0 [expr {$dotLocation - 1}]]
1.3
   if {$versionBase < 9} {
ISE_VERSION_CREATED_WITH
11.1
      # The project file is newer than Iron, so take action to prevent the
ISE_VERSION_LAST_SAVED_WITH
      # file from being corrupted.
11.1
      # 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__/ProjectNavigator11/.svn/PK
 
/__OBJSTORE__/ProjectNavigator11/.svn/prop-base/PK
 
+__OBJSTORE__/ProjectNavigator11/.svn/props/PK
 
/__OBJSTORE__/ProjectNavigator11/.svn/text-base/PK
 
)__OBJSTORE__/ProjectNavigator11/.svn/tmp/PK
 
3__OBJSTORE__/ProjectNavigator11/.svn/tmp/prop-base/PK
 
/__OBJSTORE__/ProjectNavigator11/.svn/tmp/props/PK
 
3__OBJSTORE__/ProjectNavigator11/.svn/tmp/text-base/PK
 
2,__OBJSTORE__/ProjectNavigator11/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__OBJSTORE__/ProjectNavigator11
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
PK
 
!__OBJSTORE__/ProjectNavigatorGui/PK
 
&__OBJSTORE__/ProjectNavigatorGui/.svn/PK
 
0__OBJSTORE__/ProjectNavigatorGui/.svn/prop-base/PK
 
,__OBJSTORE__/ProjectNavigatorGui/.svn/props/PK
 
1&55B__OBJSTORE__/ProjectNavigatorGui/.svn/props/CViewSelector.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55I__OBJSTORE__/ProjectNavigatorGui/.svn/props/CViewSelector_StrTbl.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55G__OBJSTORE__/ProjectNavigatorGui/.svn/props/File-SynthesisOnly.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55N__OBJSTORE__/ProjectNavigatorGui/.svn/props/File-SynthesisOnly_StrTbl.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55J__OBJSTORE__/ProjectNavigatorGui/.svn/props/Library-SynthesisOnly.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55Q__OBJSTORE__/ProjectNavigatorGui/.svn/props/Library-SynthesisOnly_StrTbl.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55b__OBJSTORE__/ProjectNavigatorGui/.svn/props/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTURE.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55i__OBJSTORE__/ProjectNavigatorGui/.svn/props/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTURE_StrTbl.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55U__OBJSTORE__/ProjectNavigatorGui/.svn/props/Source-SynthesisOnly-AutoCompile.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55\__OBJSTORE__/ProjectNavigatorGui/.svn/props/Source-SynthesisOnly-AutoCompile_StrTbl.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
0__OBJSTORE__/ProjectNavigatorGui/.svn/text-base/PK
 
*__OBJSTORE__/ProjectNavigatorGui/.svn/tmp/PK
 
4__OBJSTORE__/ProjectNavigatorGui/.svn/tmp/prop-base/PK
 
0__OBJSTORE__/ProjectNavigatorGui/.svn/tmp/props/PK
 
4__OBJSTORE__/ProjectNavigatorGui/.svn/tmp/text-base/PK
 
_-__OBJSTORE__/ProjectNavigatorGui/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__OBJSTORE__/ProjectNavigatorGui
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
Process-SynthesisOnly-DESUT_VHDL_ARCHITECTURE_StrTbl
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
Source-SynthesisOnly-AutoCompile_StrTbl
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
File-SynthesisOnly_StrTbl
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
Library-SynthesisOnly_StrTbl
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
File-SynthesisOnly
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
Source-SynthesisOnly-AutoCompile
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
Process-SynthesisOnly-DESUT_VHDL_ARCHITECTURE
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
CViewSelector_StrTbl
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
Library-SynthesisOnly
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
CViewSelector
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
PK
 
4!d.__OBJSTORE__/ProjectNavigatorGui/CViewSelectorPK
 
"z5__OBJSTORE__/ProjectNavigatorGui/CViewSelector_StrTblImplementationPK
 

AA3__OBJSTORE__/ProjectNavigatorGui/File-SynthesisOnlyaPK
 
4!!:__OBJSTORE__/ProjectNavigatorGui/File-SynthesisOnly_StrTblGECKO3COM_defines.vhdPK
 
|e==6__OBJSTORE__/ProjectNavigatorGui/Library-SynthesisOnly$PK
 
O=__OBJSTORE__/ProjectNavigatorGui/Library-SynthesisOnly_StrTblverilogPK
 
EE7__OBJSTORE__/ProjectNavigatorGui/Process-BehavioralSim-bPK
 
aovCCN__OBJSTORE__/ProjectNavigatorGui/Process-BehavioralSim-DESUT_VHDL_ARCHITECTUREbPK
 
0EEU__OBJSTORE__/ProjectNavigatorGui/Process-BehavioralSim-DESUT_VHDL_ARCHITECTURE_StrTblConfigure Target DeviceDesign UtilitiesImplement DesignPK
 
/l;;@__OBJSTORE__/ProjectNavigatorGui/Process-BehavioralSim-DESUT_XCOPK
 
{
[G__OBJSTORE__/ProjectNavigatorGui/Process-BehavioralSim-DESUT_XCO_StrTblModelSim SimulatorPK
 
9Lll>__OBJSTORE__/ProjectNavigatorGui/Process-BehavioralSim-_StrTblConfigure Target DeviceDesign UtilitiesImplement DesignModelSim SimulatorAdd Existing SourcePK
 
GCC7__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-PK
 
aovCC@__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_CDCbPK
 
0EEG__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_CDC_StrTblConfigure Target DeviceDesign UtilitiesImplement DesignPK
 
MCC@__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_UCFbPK
 
U
]]G__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_UCF_StrTblConfigure Target DeviceDesign UtilitiesImplement DesignEdit Constraints (Text)PK
 
E}EEN__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTUREPK
 
R;WXXU__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTURE_StrTblConfigure Target DeviceDesign UtilitiesImplement DesignModelSim SimulatorPK
 
AAN__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_PACKAGE_DECLbPK
 
U__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_PACKAGE_DECL_StrTblDesign UtilitiesPK
 
EE@__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_XCObPK
 
vvG__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_XCO_StrTblConfigure Target DeviceDesign UtilitiesImplement DesignSynthesize - XSTView HDL Instantiation TemplatePK
 
0EE>__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-_StrTblConfigure Target DeviceDesign UtilitiesImplement DesignPK
 
oOOA__OBJSTORE__/ProjectNavigatorGui/Source-BehavioralSim-AutoCompilePK
 
H__OBJSTORE__/ProjectNavigatorGui/Source-BehavioralSim-AutoCompile_StrTbl/GECKO3COM_loopback - loopback/GPIF_INTERFACE - gpif_com - structure/F_OUT - fifo_dualclock - wrappergpif_com_test_tb - simulation (gpif_com_test_tb.vhd)PK
 
IWccA__OBJSTORE__/ProjectNavigatorGui/Source-SynthesisOnly-AutoCompile
 
PK
 
^TH__OBJSTORE__/ProjectNavigatorGui/Source-SynthesisOnly-AutoCompile_StrTbl
/GECKO3COM_loopback - loopback/GPIF_INTERFACE - gpif_com - structure/F_IN - fifo_dualclock - wrapper/GECKO3COM_loopback - loopback/GPIF_INTERFACE - gpif_com - structure/F_OUT - fifo_dualclock - wrapper/GECKO3COM_simple - Behavioral/GECKO3COM_simple_datapath_1 - GECKO3COM_simple_datapath - behaviour/receive_fifo_1 - receive_fifo - wrapper/GECKO3COM_simple - Behavioral/GECKO3COM_simple_datapath_1 - GECKO3COM_simple_datapath - behaviour/send_fifo_1 - send_fifo - wrapper/GECKO3COM_simple - Behavioral/GPIF_INTERFACE - gpif_com - structure/GECKO3COM_simple - Behavioral/GPIF_INTERFACE - gpif_com - structure/F_IN - fifo_dualclock - wrapper/GECKO3COM_simple - Behavioral/GPIF_INTERFACE - gpif_com - structure/F_OUT - fifo_dualclock - wrapper/gpif_com_test - behaviour/GPIF_INTERFACE - gpif_com - structure/F_IN - fifo_dualclock - wrapper/gpif_com_test - behaviour/GPIF_INTERFACE - gpif_com - structure/F_OUT - fifo_dualclock - wrapper/gpif_com_test - loopback/GPIF_INTERFACE - gpif_com - structure/F_IN - fifo_dualclock - wrapper/gpif_com_test - loopback/GPIF_INTERFACE - gpif_com - structure/F_OUT - fifo_dualclock - wrapperGECKO3COM_simple - Behavioral (GECKO3COM_simple.vhd)PK
 
 __OBJSTORE__/_ProjRepoInternal_/PK
 
%__OBJSTORE__/_ProjRepoInternal_/.svn/PK
 
/__OBJSTORE__/_ProjRepoInternal_/.svn/prop-base/PK
 
+__OBJSTORE__/_ProjRepoInternal_/.svn/props/PK
 
/__OBJSTORE__/_ProjRepoInternal_/.svn/text-base/PK
 
)__OBJSTORE__/_ProjRepoInternal_/.svn/tmp/PK
 
3__OBJSTORE__/_ProjRepoInternal_/.svn/tmp/prop-base/PK
 
/__OBJSTORE__/_ProjRepoInternal_/.svn/tmp/props/PK
 
3__OBJSTORE__/_ProjRepoInternal_/.svn/tmp/text-base/PK
 
D,__OBJSTORE__/_ProjRepoInternal_/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__OBJSTORE__/_ProjRepoInternal_
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
PK
 
__OBJSTORE__/common/PK
 
__OBJSTORE__/common/.svn/PK
 
#__OBJSTORE__/common/.svn/prop-base/PK
 
__OBJSTORE__/common/.svn/props/PK
 
#__OBJSTORE__/common/.svn/text-base/PK
 
__OBJSTORE__/common/.svn/tmp/PK
 
'__OBJSTORE__/common/.svn/tmp/prop-base/PK
 
#__OBJSTORE__/common/.svn/tmp/props/PK
 
'__OBJSTORE__/common/.svn/tmp/text-base/PK
 
ڐg __OBJSTORE__/common/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__OBJSTORE__/common
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
PK
 
__OBJSTORE__/xreport/PK
 
__OBJSTORE__/xreport/.svn/PK
 
$__OBJSTORE__/xreport/.svn/prop-base/PK
 
 __OBJSTORE__/xreport/.svn/props/PK
 
1&55I__OBJSTORE__/xreport/.svn/props/Gc_RvReportViewer-Current-Module.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55P__OBJSTORE__/xreport/.svn/props/Gc_RvReportViewer-Current-Module_StrTbl.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55Q__OBJSTORE__/xreport/.svn/props/Gc_RvReportViewer-Module-Data-USB_TMC_IP.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55X__OBJSTORE__/xreport/.svn/props/Gc_RvReportViewer-Module-Data-USB_TMC_IP_StrTbl.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55U__OBJSTORE__/xreport/.svn/props/Gc_RvReportViewer-Module-DataFactory-Default.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
1&55\__OBJSTORE__/xreport/.svn/props/Gc_RvReportViewer-Module-DataFactory-Default_StrTbl.svn-workK 13
 
svn:mime-type
 
V 24
 
application/octet-stream
 
END
 
PK
 
$__OBJSTORE__/xreport/.svn/text-base/PK
 
__OBJSTORE__/xreport/.svn/tmp/PK
 
(__OBJSTORE__/xreport/.svn/tmp/prop-base/PK
 
$__OBJSTORE__/xreport/.svn/tmp/props/PK
 
(__OBJSTORE__/xreport/.svn/tmp/text-base/PK
 
       !__OBJSTORE__/xreport/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__OBJSTORE__/xreport
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
Gc_RvReportViewer-Current-Module
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
Gc_RvReportViewer-Module-DataFactory-Default
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
Gc_RvReportViewer-Module-Data-USB_TMC_IP_StrTbl
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
Gc_RvReportViewer-Module-Data-USB_TMC_IP
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
Gc_RvReportViewer-Current-Module_StrTbl
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
Gc_RvReportViewer-Module-DataFactory-Default_StrTbl
 
file
 
 
 
 
add
 
 
 
 
 
 
has-props
 
has-prop-mods
 

 
PK
 
>5__OBJSTORE__/xreport/Gc_RvReportViewer-Current-ModulePK
 
]TT<__OBJSTORE__/xreport/Gc_RvReportViewer-Current-Module_StrTblgpif_com_testUSB_TMC_IP_loopbackGECKO3COM_loopbackgpif_com_testlockPK
 
M}}E__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-GECKO3COM_loopback
 

 !"#$%&')*+,-./012456789:;<=@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK
 
#@@L__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-GECKO3COM_loopback_StrTbl 
2009-12-17T16:51:23 GECKO3COM_loopback Unknown 2009-12-17T16:51:23
 
 

 !"#$%&'()*+,-./0123456789:;<=>?@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK
 
aVy|A|AD__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-USB_TMC_IP_StrTbl 
2009-12-07T11:42:49 USB_TMC_IP Unknown 2009-12-07T11:22:16
2009-12-07T11:47:44 2009-12-07T11:50:33 2009-12-07T16:02:14 2009-12-07T11:53:13 2009-12-07T16:11:52 2009-12-07T16:02:39 2009-12-07T16:15:09 2009-12-07T16:12:01 2009-12-07T16:15:16 2009-12-07T16:15:29 2009-12-07T16:22:44 2009-12-07T16:21:14 2009-12-07T16:23:15 2009-12-07T16:22:52 2009-12-07T16:23:27 2009-12-07T16:24:00 2009-12-07T16:24:38 2009-12-07T16:24:09 2009-12-07T16:27:14 2009-12-17T12:36:48 2009-12-17T15:23:51 2009-12-17T13:04:34 2009-12-17T15:25:45 2009-12-17T15:31:18 2009-12-17T15:42:40 2009-12-17T15:48:11 2009-12-17T16:00:45 2009-12-17T16:04:51 2009-12-17T16:05:20 2009-12-17T16:06:20 2009-12-17T16:11:30 2009-12-17T16:11:40PK
 
[
 
}}F__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-USB_TMC_IP_loopback
 

 !"#$%&')*+,-./012456789:;<=@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK
 
^??M__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-USB_TMC_IP_loopback_StrTbl 
2009-12-17T16:13:57 USB_TMC_IP_loopback Unknown 2009-12-17T16:13:57
 
YU}}A__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-fifo_dualclock
 

 !"#$%&'()*+,-./0123456789:;<=>?@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK
 
;;H__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-fifo_dualclock_StrTbl 
2009-12-17T16:50:15 fifo_dualclock Unknown 2009-12-17T16:48:15
PK
 
}};__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-gpif_com
 

 !"#$%&')*+,-./012456789:;<=@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK
 
钡D<<B__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-gpif_com_StrTbl 
2009-12-17T16:45:07 gpif_com Unknown 2009-12-17T16:45:07
 
TX}}D__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-gpif_com_datapath
 

 !"#$%&')*+,-./012456789:;<=@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK
 
X>X>K__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-gpif_com_datapath_StrTbl 
2009-12-17T16:43:44 gpif_com_datapath Unknown 2009-12-17T16:43:44
 
YU}}@__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-gpif_com_test
 

 !"#$%&'()*+,-./0123456789:;<=>?@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK
 
3n;n;G__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-gpif_com_test_StrTbl 
2010-01-28T11:32:54 gpif_com_test 2010-01-26T14:19:25 2009-12-17T18:04:42
PK
 
ێA__OBJSTORE__/xreport/Gc_RvReportViewer-Module-DataFactory-Default
 

 !"#$%&!'()*+,-./01!23456789:;<=>?@A4BCD>E4FGHIJKLMNOPQRS>T4UVWXYZ>[4\]>^_`ab>cde>f4gh>i4jk>!lmn4>o4>pq4rs>tuvw>x4>y4>z{|}>~>4>>>>!PK
 
$`=`=H__OBJSTORE__/xreport/Gc_RvReportViewer-Module-DataFactory-Default_StrTbl
Wed, 18 June 2008, 10:00:00 MDT Unknown Unknown
PK
 

__REGISTRY__/PK
 
__REGISTRY__/.svn/PK
 
__REGISTRY__/.svn/prop-base/PK
 
__REGISTRY__/.svn/props/PK
 
__REGISTRY__/.svn/text-base/PK
 
__REGISTRY__/.svn/tmp/PK
 
 __REGISTRY__/.svn/tmp/prop-base/PK
 
__REGISTRY__/.svn/tmp/props/PK
 
 __REGISTRY__/.svn/tmp/text-base/PK
 
X1__REGISTRY__/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
ProjectNavigator
 
dir
 
 
 
 
add
 

 
ProjectNavigator11
 
dir
 
 
 
 
add
 

 
cpldfit
 
dir
 
 
 
 
add
 

 
ProjectNavigatorGui
 
dir
 
 
 
 
add
 

 
vlogcomp
 
dir
 
 
 
 
add
 

 
ngcbuild
 
dir
 
 
 
 
add
 

 
XSLTProcess
 
dir
 
 
 
 
add
 

 
taengine
 
dir
 
 
 
 
add
 

 
platgen
 
dir
 
 
 
 
add
 

 
Autonym
 
dir
 
 
 
 
add
 

 
trce
 
dir
 
 
 
 
add
 

 
libgen
 
dir
 
 
 
 
add
 

 
bitinit
 
dir
 
 
 
 
add
 

 
fuse
 
dir
 
 
 
 
add
 

 
xreport
 
dir
 
 
 
 
add
 

 
hprep6
 
dir
 
 
 
 
add
 

 
bitgen
 
dir
 
 
 
 
add
 

 
tsim
 
dir
 
 
 
 
add
 

 
map
 
dir
 
 
 
 
add
 

 
idem
 
dir
 
 
 
 
add
 

 
netgen
 
dir
 
 
 
 
add
 

 
ngc2edif
 
dir
 
 
 
 
add
 

 
par
 
dir
 
 
 
 
add
 

 
simgen
 
dir
 
 
 
 
add
 

 
dumpngdio
 
dir
 
 
 
 
add
 

 
ngdbuild
 
dir
 
 
 
 
add
 

 
common
 
dir
 
 
 
 
add
 

 
_ProjRepoInternal_
 
dir
 
 
 
 
add
 

 
xpwr
 
dir
 
 
 
 
add
 

 
HierarchicalDesign
 
dir
 
 
 
 
add
 

 
runner
 
dir
 
 
 
 
add
 

 
vhpcomp
 
dir
 
 
 
 
add
 

 
xst
 
dir
 
 
 
 
add
 

 
PK
 
__REGISTRY__/Autonym/PK
 
__REGISTRY__/Autonym/.svn/PK
 
$__REGISTRY__/Autonym/.svn/prop-base/PK
 
 __REGISTRY__/Autonym/.svn/props/PK
 
$__REGISTRY__/Autonym/.svn/text-base/PK
 
__REGISTRY__/Autonym/.svn/tmp/PK
 
(__REGISTRY__/Autonym/.svn/tmp/prop-base/PK
 
$__REGISTRY__/Autonym/.svn/tmp/props/PK
 
(__REGISTRY__/Autonym/.svn/tmp/text-base/PK
 
!__REGISTRY__/Autonym/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/Autonym
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
__REGISTRY__/Autonym/regkeysPK
 
#__REGISTRY__/ExpandedNetlistEngine/PK
 
*__REGISTRY__/ExpandedNetlistEngine/regkeysPK
 
 __REGISTRY__/HierarchicalDesign/PK
 
%__REGISTRY__/HierarchicalDesign/.svn/PK
 
/__REGISTRY__/HierarchicalDesign/.svn/prop-base/PK
 
+__REGISTRY__/HierarchicalDesign/.svn/props/PK
 
/__REGISTRY__/HierarchicalDesign/.svn/text-base/PK
 
)__REGISTRY__/HierarchicalDesign/.svn/tmp/PK
 
3__REGISTRY__/HierarchicalDesign/.svn/tmp/prop-base/PK
 
/__REGISTRY__/HierarchicalDesign/.svn/tmp/props/PK
 
3__REGISTRY__/HierarchicalDesign/.svn/tmp/text-base/PK
 
6ݜ,__REGISTRY__/HierarchicalDesign/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/HierarchicalDesign
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
HDProject
 
dir
 
 
 
 
add
 

 
PK
 
*__REGISTRY__/HierarchicalDesign/HDProject/PK
 
/__REGISTRY__/HierarchicalDesign/HDProject/.svn/PK
 
9__REGISTRY__/HierarchicalDesign/HDProject/.svn/prop-base/PK
 
5__REGISTRY__/HierarchicalDesign/HDProject/.svn/props/PK
 
9__REGISTRY__/HierarchicalDesign/HDProject/.svn/text-base/PK
 
3__REGISTRY__/HierarchicalDesign/HDProject/.svn/tmp/PK
 
=__REGISTRY__/HierarchicalDesign/HDProject/.svn/tmp/prop-base/PK
 
9__REGISTRY__/HierarchicalDesign/HDProject/.svn/tmp/props/PK
 
=__REGISTRY__/HierarchicalDesign/HDProject/.svn/tmp/text-base/PK
 
u%6__REGISTRY__/HierarchicalDesign/HDProject/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/HierarchicalDesign/HDProject
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
D$\\1__REGISTRY__/HierarchicalDesign/HDProject/regkeysCommandLine-Map
 
 
s
 
CommandLine-Ngdbuild
 
/home/chrigi/bin/11.1/ISE/bin/lin64/unwrapped/ngdbuild -ise GECKO3COM_simple_prototype.ise -intstyle ise -dd _ngo -nt timestamp -i -p xc3s1500-fg676-4 gpif_com_test_cs.ngc gpif_com_test.ngd
 
s
 
CommandLine-Par
 
 
s
 
CommandLine-Xst
 
 
s
 
Previous-NGD
 
 
s
 
Previous-NGM
 
 
s
 
Previous-Packed-NCD
 
 
s
 
Previous-Routed-NCD
 
 
s
 
PK
 
'__REGISTRY__/HierarchicalDesign/regkeysPK
 
__REGISTRY__/ProjectNavigator/PK
 
#__REGISTRY__/ProjectNavigator/.svn/PK
 
-__REGISTRY__/ProjectNavigator/.svn/prop-base/PK
 
)__REGISTRY__/ProjectNavigator/.svn/props/PK
 
-__REGISTRY__/ProjectNavigator/.svn/text-base/PK
 
'__REGISTRY__/ProjectNavigator/.svn/tmp/PK
 
1__REGISTRY__/ProjectNavigator/.svn/tmp/prop-base/PK
 
-__REGISTRY__/ProjectNavigator/.svn/tmp/props/PK
 
1__REGISTRY__/ProjectNavigator/.svn/tmp/text-base/PK
 
u*__REGISTRY__/ProjectNavigator/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/ProjectNavigator
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
w##%__REGISTRY__/ProjectNavigator/regkeysISE_VERSION_LAST_SAVED_WITH
 
11.1
 
s
 
PK
 
 __REGISTRY__/ProjectNavigator11/PK
 
%__REGISTRY__/ProjectNavigator11/.svn/PK
 
/__REGISTRY__/ProjectNavigator11/.svn/prop-base/PK
 
+__REGISTRY__/ProjectNavigator11/.svn/props/PK
 
/__REGISTRY__/ProjectNavigator11/.svn/text-base/PK
 
)__REGISTRY__/ProjectNavigator11/.svn/tmp/PK
 
3__REGISTRY__/ProjectNavigator11/.svn/tmp/prop-base/PK
 
/__REGISTRY__/ProjectNavigator11/.svn/tmp/props/PK
 
3__REGISTRY__/ProjectNavigator11/.svn/tmp/text-base/PK
 
A

,__REGISTRY__/ProjectNavigator11/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/ProjectNavigator11
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
=
 
OO'__REGISTRY__/ProjectNavigator11/regkeysISE_VERSION_LAST_SAVED_WITH
 
11.1
 
s
 
XISE_FILE
 
GECKO3COM_simple_prototype.xise
 
s
 
PK
 
!__REGISTRY__/ProjectNavigatorGui/PK
 
&__REGISTRY__/ProjectNavigatorGui/.svn/PK
 
0__REGISTRY__/ProjectNavigatorGui/.svn/prop-base/PK
 
,__REGISTRY__/ProjectNavigatorGui/.svn/props/PK
 
0__REGISTRY__/ProjectNavigatorGui/.svn/text-base/PK
 
*__REGISTRY__/ProjectNavigatorGui/.svn/tmp/PK
 
4__REGISTRY__/ProjectNavigatorGui/.svn/tmp/prop-base/PK
 
0__REGISTRY__/ProjectNavigatorGui/.svn/tmp/props/PK
 
4__REGISTRY__/ProjectNavigatorGui/.svn/tmp/text-base/PK
 
p-__REGISTRY__/ProjectNavigatorGui/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/ProjectNavigatorGui
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
(__REGISTRY__/ProjectNavigatorGui/regkeysPK
 
__REGISTRY__/XSLTProcess/PK
 
__REGISTRY__/XSLTProcess/.svn/PK
 
(__REGISTRY__/XSLTProcess/.svn/prop-base/PK
 
$__REGISTRY__/XSLTProcess/.svn/props/PK
 
(__REGISTRY__/XSLTProcess/.svn/text-base/PK
 
"__REGISTRY__/XSLTProcess/.svn/tmp/PK
 
,__REGISTRY__/XSLTProcess/.svn/tmp/prop-base/PK
 
(__REGISTRY__/XSLTProcess/.svn/tmp/props/PK
 
,__REGISTRY__/XSLTProcess/.svn/tmp/text-base/PK
 
\%__REGISTRY__/XSLTProcess/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/XSLTProcess
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
q33 __REGISTRY__/XSLTProcess/regkeysClientMessageOutputFile
 
_xmsgs/XSLTProcess.xmsgs
 
s
 
PK
 
 __REGISTRY__/_ProjRepoInternal_/PK
 
%__REGISTRY__/_ProjRepoInternal_/.svn/PK
 
/__REGISTRY__/_ProjRepoInternal_/.svn/prop-base/PK
 
+__REGISTRY__/_ProjRepoInternal_/.svn/props/PK
 
/__REGISTRY__/_ProjRepoInternal_/.svn/text-base/PK
 
)__REGISTRY__/_ProjRepoInternal_/.svn/tmp/PK
 
3__REGISTRY__/_ProjRepoInternal_/.svn/tmp/prop-base/PK
 
/__REGISTRY__/_ProjRepoInternal_/.svn/tmp/props/PK
 
3__REGISTRY__/_ProjRepoInternal_/.svn/tmp/text-base/PK
 
;(

,__REGISTRY__/_ProjRepoInternal_/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/_ProjRepoInternal_
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
\'__REGISTRY__/_ProjRepoInternal_/regkeysISE_VERSION_CREATED_WITH
 
11.1
 
s
 
ISE_VERSION_LAST_SAVED_WITH
 
11.1
 
s
 
LastRepoDir
 
/home/chrigi/bfh-work/GECKO3COM/gecko3com-ip/core/
 
s
 
OBJSTORE_VERSION
 
1.3
 
s
 
PROJECT_CREATION_TIMESTAMP
 
2009-12-07T11:22:13
 
s
 
REGISTRY_VERSION
 
1.1
 
s
 
REPOSITORY_VERSION
 
1.1
 
s
 
PK
 
__REGISTRY__/bitgen/PK
 
__REGISTRY__/bitgen/.svn/PK
 
#__REGISTRY__/bitgen/.svn/prop-base/PK
 
__REGISTRY__/bitgen/.svn/props/PK
 
#__REGISTRY__/bitgen/.svn/text-base/PK
 
__REGISTRY__/bitgen/.svn/tmp/PK
 
'__REGISTRY__/bitgen/.svn/tmp/prop-base/PK
 
#__REGISTRY__/bitgen/.svn/tmp/props/PK
 
'__REGISTRY__/bitgen/.svn/tmp/text-base/PK
 
sz __REGISTRY__/bitgen/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/bitgen
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
6..__REGISTRY__/bitgen/regkeysClientMessageOutputFile
 
_xmsgs/bitgen.xmsgs
 
s
 
PK
 
__REGISTRY__/bitinit/PK
 
__REGISTRY__/bitinit/.svn/PK
 
$__REGISTRY__/bitinit/.svn/prop-base/PK
 
 __REGISTRY__/bitinit/.svn/props/PK
 
$__REGISTRY__/bitinit/.svn/text-base/PK
 
__REGISTRY__/bitinit/.svn/tmp/PK
 
(__REGISTRY__/bitinit/.svn/tmp/prop-base/PK
 
$__REGISTRY__/bitinit/.svn/tmp/props/PK
 
(__REGISTRY__/bitinit/.svn/tmp/text-base/PK
 
(!__REGISTRY__/bitinit/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/bitinit
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
Л]//__REGISTRY__/bitinit/regkeysClientMessageOutputFile
 
_xmsgs/bitinit.xmsgs
 
s
 
PK
 
__REGISTRY__/common/PK
 
__REGISTRY__/common/.svn/PK
 
#__REGISTRY__/common/.svn/prop-base/PK
 
__REGISTRY__/common/.svn/props/PK
 
#__REGISTRY__/common/.svn/text-base/PK
 
__REGISTRY__/common/.svn/tmp/PK
 
'__REGISTRY__/common/.svn/tmp/prop-base/PK
 
#__REGISTRY__/common/.svn/tmp/props/PK
 
'__REGISTRY__/common/.svn/tmp/text-base/PK
 
C __REGISTRY__/common/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/common
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
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
 
__REGISTRY__/cpldfit/.svn/PK
 
$__REGISTRY__/cpldfit/.svn/prop-base/PK
 
 __REGISTRY__/cpldfit/.svn/props/PK
 
$__REGISTRY__/cpldfit/.svn/text-base/PK
 
__REGISTRY__/cpldfit/.svn/tmp/PK
 
(__REGISTRY__/cpldfit/.svn/tmp/prop-base/PK
 
$__REGISTRY__/cpldfit/.svn/tmp/props/PK
 
(__REGISTRY__/cpldfit/.svn/tmp/text-base/PK
 
~B(E!__REGISTRY__/cpldfit/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/cpldfit
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
S//__REGISTRY__/cpldfit/regkeysClientMessageOutputFile
 
_xmsgs/cpldfit.xmsgs
 
s
 
PK
 
__REGISTRY__/dumpngdio/PK
 
__REGISTRY__/dumpngdio/.svn/PK
 
&__REGISTRY__/dumpngdio/.svn/prop-base/PK
 
"__REGISTRY__/dumpngdio/.svn/props/PK
 
&__REGISTRY__/dumpngdio/.svn/text-base/PK
 
 __REGISTRY__/dumpngdio/.svn/tmp/PK
 
*__REGISTRY__/dumpngdio/.svn/tmp/prop-base/PK
 
&__REGISTRY__/dumpngdio/.svn/tmp/props/PK
 
*__REGISTRY__/dumpngdio/.svn/tmp/text-base/PK
 
#__REGISTRY__/dumpngdio/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/dumpngdio
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
Nu11__REGISTRY__/dumpngdio/regkeysClientMessageOutputFile
 
_xmsgs/dumpngdio.xmsgs
 
s
 
PK
 
__REGISTRY__/fuse/PK
 
__REGISTRY__/fuse/.svn/PK
 
!__REGISTRY__/fuse/.svn/prop-base/PK
 
__REGISTRY__/fuse/.svn/props/PK
 
!__REGISTRY__/fuse/.svn/text-base/PK
 
__REGISTRY__/fuse/.svn/tmp/PK
 
%__REGISTRY__/fuse/.svn/tmp/prop-base/PK
 
!__REGISTRY__/fuse/.svn/tmp/props/PK
 
%__REGISTRY__/fuse/.svn/tmp/text-base/PK
 
 
{__REGISTRY__/fuse/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/fuse
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
!6,,__REGISTRY__/fuse/regkeysClientMessageOutputFile
 
_xmsgs/fuse.xmsgs
 
s
 
PK
 
__REGISTRY__/home/PK
 
__REGISTRY__/home/chrigi/PK
 
__REGISTRY__/home/chrigi/bin/PK
 
"__REGISTRY__/home/chrigi/bin/11.1/PK
 
&__REGISTRY__/home/chrigi/bin/11.1/ISE/PK
 
*__REGISTRY__/home/chrigi/bin/11.1/ISE/bin/PK
 
0__REGISTRY__/home/chrigi/bin/11.1/ISE/bin/lin64/PK
 
:__REGISTRY__/home/chrigi/bin/11.1/ISE/bin/lin64/unwrapped/PK
 
?__REGISTRY__/home/chrigi/bin/11.1/ISE/bin/lin64/unwrapped/fuse/PK
 
__REGISTRY__/hprep6/PK
 
__REGISTRY__/hprep6/.svn/PK
 
#__REGISTRY__/hprep6/.svn/prop-base/PK
 
__REGISTRY__/hprep6/.svn/props/PK
 
#__REGISTRY__/hprep6/.svn/text-base/PK
 
__REGISTRY__/hprep6/.svn/tmp/PK
 
'__REGISTRY__/hprep6/.svn/tmp/prop-base/PK
 
#__REGISTRY__/hprep6/.svn/tmp/props/PK
 
'__REGISTRY__/hprep6/.svn/tmp/text-base/PK
 
C$* __REGISTRY__/hprep6/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/hprep6
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
a..__REGISTRY__/hprep6/regkeysClientMessageOutputFile
 
_xmsgs/hprep6.xmsgs
 
s
 
PK
 
__REGISTRY__/idem/PK
 
__REGISTRY__/idem/.svn/PK
 
!__REGISTRY__/idem/.svn/prop-base/PK
 
__REGISTRY__/idem/.svn/props/PK
 
!__REGISTRY__/idem/.svn/text-base/PK
 
__REGISTRY__/idem/.svn/tmp/PK
 
%__REGISTRY__/idem/.svn/tmp/prop-base/PK
 
!__REGISTRY__/idem/.svn/tmp/props/PK
 
%__REGISTRY__/idem/.svn/tmp/text-base/PK
 
HG__REGISTRY__/idem/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/idem
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
,,__REGISTRY__/idem/regkeysClientMessageOutputFile
 
_xmsgs/idem.xmsgs
 
s
 
PK
 
__REGISTRY__/libgen/PK
 
__REGISTRY__/libgen/.svn/PK
 
#__REGISTRY__/libgen/.svn/prop-base/PK
 
__REGISTRY__/libgen/.svn/props/PK
 
#__REGISTRY__/libgen/.svn/text-base/PK
 
__REGISTRY__/libgen/.svn/tmp/PK
 
'__REGISTRY__/libgen/.svn/tmp/prop-base/PK
 
#__REGISTRY__/libgen/.svn/tmp/props/PK
 
'__REGISTRY__/libgen/.svn/tmp/text-base/PK
 
.ؚI __REGISTRY__/libgen/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/libgen
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
ħ..__REGISTRY__/libgen/regkeysClientMessageOutputFile
 
_xmsgs/libgen.xmsgs
 
s
 
PK
 
__REGISTRY__/map/PK
 
__REGISTRY__/map/.svn/PK
 
 __REGISTRY__/map/.svn/prop-base/PK
 
__REGISTRY__/map/.svn/props/PK
 
 __REGISTRY__/map/.svn/text-base/PK
 
__REGISTRY__/map/.svn/tmp/PK
 
$__REGISTRY__/map/.svn/tmp/prop-base/PK
 
 __REGISTRY__/map/.svn/tmp/props/PK
 
$__REGISTRY__/map/.svn/tmp/text-base/PK
 
B__REGISTRY__/map/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/map
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
[++__REGISTRY__/map/regkeysClientMessageOutputFile
 
_xmsgs/map.xmsgs
 
s
 
PK
 
__REGISTRY__/netgen/PK
 
__REGISTRY__/netgen/.svn/PK
 
#__REGISTRY__/netgen/.svn/prop-base/PK
 
__REGISTRY__/netgen/.svn/props/PK
 
#__REGISTRY__/netgen/.svn/text-base/PK
 
__REGISTRY__/netgen/.svn/tmp/PK
 
'__REGISTRY__/netgen/.svn/tmp/prop-base/PK
 
#__REGISTRY__/netgen/.svn/tmp/props/PK
 
'__REGISTRY__/netgen/.svn/tmp/text-base/PK
 
E;" __REGISTRY__/netgen/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/netgen
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
e6~..__REGISTRY__/netgen/regkeysClientMessageOutputFile
 
_xmsgs/netgen.xmsgs
 
s
 
PK
 
__REGISTRY__/ngc2edif/PK
 
__REGISTRY__/ngc2edif/.svn/PK
 
%__REGISTRY__/ngc2edif/.svn/prop-base/PK
 
!__REGISTRY__/ngc2edif/.svn/props/PK
 
%__REGISTRY__/ngc2edif/.svn/text-base/PK
 
__REGISTRY__/ngc2edif/.svn/tmp/PK
 
)__REGISTRY__/ngc2edif/.svn/tmp/prop-base/PK
 
%__REGISTRY__/ngc2edif/.svn/tmp/props/PK
 
)__REGISTRY__/ngc2edif/.svn/tmp/text-base/PK
 
.zC"__REGISTRY__/ngc2edif/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/ngc2edif
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
OUś00__REGISTRY__/ngc2edif/regkeysClientMessageOutputFile
 
_xmsgs/ngc2edif.xmsgs
 
s
 
PK
 
__REGISTRY__/ngcbuild/PK
 
__REGISTRY__/ngcbuild/.svn/PK
 
%__REGISTRY__/ngcbuild/.svn/prop-base/PK
 
!__REGISTRY__/ngcbuild/.svn/props/PK
 
%__REGISTRY__/ngcbuild/.svn/text-base/PK
 
__REGISTRY__/ngcbuild/.svn/tmp/PK
 
)__REGISTRY__/ngcbuild/.svn/tmp/prop-base/PK
 
%__REGISTRY__/ngcbuild/.svn/tmp/props/PK
 
)__REGISTRY__/ngcbuild/.svn/tmp/text-base/PK
 
O     "__REGISTRY__/ngcbuild/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/ngcbuild
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
E00__REGISTRY__/ngcbuild/regkeysClientMessageOutputFile
 
_xmsgs/ngcbuild.xmsgs
 
s
 
PK
 
__REGISTRY__/ngdbuild/PK
 
__REGISTRY__/ngdbuild/.svn/PK
 
%__REGISTRY__/ngdbuild/.svn/prop-base/PK
 
!__REGISTRY__/ngdbuild/.svn/props/PK
 
%__REGISTRY__/ngdbuild/.svn/text-base/PK
 
__REGISTRY__/ngdbuild/.svn/tmp/PK
 
)__REGISTRY__/ngdbuild/.svn/tmp/prop-base/PK
 
%__REGISTRY__/ngdbuild/.svn/tmp/props/PK
 
)__REGISTRY__/ngdbuild/.svn/tmp/text-base/PK
 
Z"__REGISTRY__/ngdbuild/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/ngdbuild
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
Jx00__REGISTRY__/ngdbuild/regkeysClientMessageOutputFile
 
_xmsgs/ngdbuild.xmsgs
 
s
 
PK
 
__REGISTRY__/par/PK
 
__REGISTRY__/par/.svn/PK
 
 __REGISTRY__/par/.svn/prop-base/PK
 
__REGISTRY__/par/.svn/props/PK
 
 __REGISTRY__/par/.svn/text-base/PK
 
__REGISTRY__/par/.svn/tmp/PK
 
$__REGISTRY__/par/.svn/tmp/prop-base/PK
 
 __REGISTRY__/par/.svn/tmp/props/PK
 
$__REGISTRY__/par/.svn/tmp/text-base/PK
 
__REGISTRY__/par/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/par
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
++__REGISTRY__/par/regkeysClientMessageOutputFile
 
_xmsgs/par.xmsgs
 
s
 
PK
 
__REGISTRY__/platgen/PK
 
__REGISTRY__/platgen/.svn/PK
 
$__REGISTRY__/platgen/.svn/prop-base/PK
 
 __REGISTRY__/platgen/.svn/props/PK
 
$__REGISTRY__/platgen/.svn/text-base/PK
 
__REGISTRY__/platgen/.svn/tmp/PK
 
(__REGISTRY__/platgen/.svn/tmp/prop-base/PK
 
$__REGISTRY__/platgen/.svn/tmp/props/PK
 
(__REGISTRY__/platgen/.svn/tmp/text-base/PK
 
,|/!__REGISTRY__/platgen/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/platgen
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
t//__REGISTRY__/platgen/regkeysClientMessageOutputFile
 
_xmsgs/platgen.xmsgs
 
s
 
PK
 
__REGISTRY__/runner/PK
 
__REGISTRY__/runner/.svn/PK
 
#__REGISTRY__/runner/.svn/prop-base/PK
 
__REGISTRY__/runner/.svn/props/PK
 
#__REGISTRY__/runner/.svn/text-base/PK
 
__REGISTRY__/runner/.svn/tmp/PK
 
'__REGISTRY__/runner/.svn/tmp/prop-base/PK
 
#__REGISTRY__/runner/.svn/tmp/props/PK
 
'__REGISTRY__/runner/.svn/tmp/text-base/PK
 
H __REGISTRY__/runner/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/runner
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
p7..__REGISTRY__/runner/regkeysClientMessageOutputFile
 
_xmsgs/runner.xmsgs
 
s
 
PK
 
__REGISTRY__/simgen/PK
 
__REGISTRY__/simgen/.svn/PK
 
#__REGISTRY__/simgen/.svn/prop-base/PK
 
__REGISTRY__/simgen/.svn/props/PK
 
#__REGISTRY__/simgen/.svn/text-base/PK
 
__REGISTRY__/simgen/.svn/tmp/PK
 
'__REGISTRY__/simgen/.svn/tmp/prop-base/PK
 
#__REGISTRY__/simgen/.svn/tmp/props/PK
 
'__REGISTRY__/simgen/.svn/tmp/text-base/PK
 
 __REGISTRY__/simgen/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/simgen
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
9M=..__REGISTRY__/simgen/regkeysClientMessageOutputFile
 
_xmsgs/simgen.xmsgs
 
s
 
PK
 
__REGISTRY__/taengine/PK
 
__REGISTRY__/taengine/.svn/PK
 
%__REGISTRY__/taengine/.svn/prop-base/PK
 
!__REGISTRY__/taengine/.svn/props/PK
 
%__REGISTRY__/taengine/.svn/text-base/PK
 
__REGISTRY__/taengine/.svn/tmp/PK
 
)__REGISTRY__/taengine/.svn/tmp/prop-base/PK
 
%__REGISTRY__/taengine/.svn/tmp/props/PK
 
)__REGISTRY__/taengine/.svn/tmp/text-base/PK
 
       4"__REGISTRY__/taengine/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/taengine
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
00__REGISTRY__/taengine/regkeysClientMessageOutputFile
 
_xmsgs/taengine.xmsgs
 
s
 
PK
 
__REGISTRY__/trce/PK
 
__REGISTRY__/trce/.svn/PK
 
!__REGISTRY__/trce/.svn/prop-base/PK
 
__REGISTRY__/trce/.svn/props/PK
 
!__REGISTRY__/trce/.svn/text-base/PK
 
__REGISTRY__/trce/.svn/tmp/PK
 
%__REGISTRY__/trce/.svn/tmp/prop-base/PK
 
!__REGISTRY__/trce/.svn/tmp/props/PK
 
%__REGISTRY__/trce/.svn/tmp/text-base/PK
 
X/__REGISTRY__/trce/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/trce
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 

 
,,__REGISTRY__/trce/regkeysClientMessageOutputFile
 
_xmsgs/trce.xmsgs
 
s
 
PK
 
__REGISTRY__/tsim/PK
 
__REGISTRY__/tsim/.svn/PK
 
!__REGISTRY__/tsim/.svn/prop-base/PK
 
__REGISTRY__/tsim/.svn/props/PK
 
!__REGISTRY__/tsim/.svn/text-base/PK
 
__REGISTRY__/tsim/.svn/tmp/PK
 
%__REGISTRY__/tsim/.svn/tmp/prop-base/PK
 
!__REGISTRY__/tsim/.svn/tmp/props/PK
 
%__REGISTRY__/tsim/.svn/tmp/text-base/PK
 
=N__REGISTRY__/tsim/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/tsim
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
\-`,,__REGISTRY__/tsim/regkeysClientMessageOutputFile
 
_xmsgs/tsim.xmsgs
 
s
 
PK
 
__REGISTRY__/vhpcomp/PK
 
__REGISTRY__/vhpcomp/.svn/PK
 
$__REGISTRY__/vhpcomp/.svn/prop-base/PK
 
 __REGISTRY__/vhpcomp/.svn/props/PK
 
$__REGISTRY__/vhpcomp/.svn/text-base/PK
 
__REGISTRY__/vhpcomp/.svn/tmp/PK
 
(__REGISTRY__/vhpcomp/.svn/tmp/prop-base/PK
 
$__REGISTRY__/vhpcomp/.svn/tmp/props/PK
 
(__REGISTRY__/vhpcomp/.svn/tmp/text-base/PK
 
!c!__REGISTRY__/vhpcomp/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/vhpcomp
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
Di//__REGISTRY__/vhpcomp/regkeysClientMessageOutputFile
 
_xmsgs/vhpcomp.xmsgs
 
s
 
PK
 
__REGISTRY__/vlogcomp/PK
 
__REGISTRY__/vlogcomp/.svn/PK
 
%__REGISTRY__/vlogcomp/.svn/prop-base/PK
 
!__REGISTRY__/vlogcomp/.svn/props/PK
 
%__REGISTRY__/vlogcomp/.svn/text-base/PK
 
__REGISTRY__/vlogcomp/.svn/tmp/PK
 
)__REGISTRY__/vlogcomp/.svn/tmp/prop-base/PK
 
%__REGISTRY__/vlogcomp/.svn/tmp/props/PK
 
)__REGISTRY__/vlogcomp/.svn/tmp/text-base/PK
 
'#"__REGISTRY__/vlogcomp/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/vlogcomp
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
]00__REGISTRY__/vlogcomp/regkeysClientMessageOutputFile
 
_xmsgs/vlogcomp.xmsgs
 
s
 
PK
 
__REGISTRY__/xpwr/PK
 
__REGISTRY__/xpwr/.svn/PK
 
!__REGISTRY__/xpwr/.svn/prop-base/PK
 
__REGISTRY__/xpwr/.svn/props/PK
 
!__REGISTRY__/xpwr/.svn/text-base/PK
 
__REGISTRY__/xpwr/.svn/tmp/PK
 
%__REGISTRY__/xpwr/.svn/tmp/prop-base/PK
 
!__REGISTRY__/xpwr/.svn/tmp/props/PK
 
%__REGISTRY__/xpwr/.svn/tmp/text-base/PK
 
 __REGISTRY__/xpwr/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/xpwr
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
H,,,__REGISTRY__/xpwr/regkeysClientMessageOutputFile
 
_xmsgs/xpwr.xmsgs
 
s
 
PK
 
__REGISTRY__/xreport/PK
 
__REGISTRY__/xreport/.svn/PK
 
$__REGISTRY__/xreport/.svn/prop-base/PK
 
 __REGISTRY__/xreport/.svn/props/PK
 
$__REGISTRY__/xreport/.svn/text-base/PK
 
__REGISTRY__/xreport/.svn/tmp/PK
 
(__REGISTRY__/xreport/.svn/tmp/prop-base/PK
 
$__REGISTRY__/xreport/.svn/tmp/props/PK
 
(__REGISTRY__/xreport/.svn/tmp/text-base/PK
 
!__REGISTRY__/xreport/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/xreport
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
__REGISTRY__/xreport/regkeysPK
 
__REGISTRY__/xst/PK
 
__REGISTRY__/xst/.svn/PK
 
 __REGISTRY__/xst/.svn/prop-base/PK
 
__REGISTRY__/xst/.svn/props/PK
 
 __REGISTRY__/xst/.svn/text-base/PK
 
__REGISTRY__/xst/.svn/tmp/PK
 
$__REGISTRY__/xst/.svn/tmp/prop-base/PK
 
 __REGISTRY__/xst/.svn/tmp/props/PK
 
$__REGISTRY__/xst/.svn/tmp/text-base/PK
 
0
__REGISTRY__/xst/.svn/entries10
 
 
dir
 
0
 
http://opencores.org/ocsvn/gecko3/gecko3/trunk/GECKO3COM/gecko3com-ip/core/usb_tmc_com_prototype_xdb/tmp/ise/__REGISTRY__/xst
 
http://opencores.org/ocsvn/gecko3
 
add
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90781beb-4edd-4d2c-84bc-0b11c8820640
 

 
regkeys
 
file
 
 
 
 
add
 

 
PK
 
++__REGISTRY__/xst/regkeysClientMessageOutputFile
 
_xmsgs/xst.xmsgs
 
s
 
PK
 
V]versionREPOSITORY_VERSION
 
1.1
 
REGISTRY_VERSION
 
1.1
 
OBJSTORE_VERSION
 
1.3
 
ISE_VERSION_CREATED_WITH
 
11.1
 
ISE_VERSION_LAST_SAVED_WITH
 
11.1
 
 
 

powered by: WebSVN 2.1.0

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