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

Subversion Repositories gecko3

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

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

Rev 22 Rev 24
PK
PK

__OBJSTORE__/PK

__OBJSTORE__/PK
__OBJSTORE__/Autonym/PK
__OBJSTORE__/Autonym/PK
#__OBJSTORE__/ExpandedNetlistEngine/PK
#__OBJSTORE__/ExpandedNetlistEngine/PK
 __OBJSTORE__/HierarchicalDesign/PK
 __OBJSTORE__/HierarchicalDesign/PK
*__OBJSTORE__/HierarchicalDesign/HDProject/PK
*__OBJSTORE__/HierarchicalDesign/HDProject/PK
j}53__OBJSTORE__/HierarchicalDesign/HDProject/HDProjectgpif_com_test_prev_built.ngdPK
j}53__OBJSTORE__/HierarchicalDesign/HDProject/HDProjectgpif_com_test_prev_built.ngdPK
Y::__OBJSTORE__/HierarchicalDesign/HDProject/HDProject_StrTbl20/gpif_com_testPK
Y::__OBJSTORE__/HierarchicalDesign/HDProject/HDProject_StrTbl20/gpif_com_testPK
";<<7__OBJSTORE__/HierarchicalDesign/__stored_object_table__(:PK
";<<7__OBJSTORE__/HierarchicalDesign/__stored_object_table__(:PK
__OBJSTORE__/PnAutoRun/PK
__OBJSTORE__/PnAutoRun/PK
__OBJSTORE__/PnAutoRun/Scripts/PK
__OBJSTORE__/PnAutoRun/Scripts/PK
>*__OBJSTORE__/PnAutoRun/Scripts/RunOnce_tclPK
>*__OBJSTORE__/PnAutoRun/Scripts/RunOnce_tclPK
髭1__OBJSTORE__/PnAutoRun/Scripts/RunOnce_tcl_StrTblnamespace eval xilinx {
髭1__OBJSTORE__/PnAutoRun/Scripts/RunOnce_tcl_StrTblnamespace eval xilinx {
namespace eval Dpm {
namespace eval Dpm {
proc GetIseVersion {} {
proc GetIseVersion {} {
   set fsetName "fileset.txt"
   set fsetName "fileset.txt"
   set fsetPath ""
   set fsetPath ""
   # Find the file in the Xilinx environment.
   # Find the file in the Xilinx environment.
   # First, construct the environment path.
   # First, construct the environment path.
   set sep ":"; # Default to UNIX style seperator.
   set sep ":"; # Default to UNIX style seperator.
   if {[string compare -length 7 $::tcl_platform(platform) "windows"] == 0} {
   if {[string compare -length 7 $::tcl_platform(platform) "windows"] == 0} {
      set sep ";"; # Platform is a Windows variant, so use semi-colon.
      set sep ";"; # Platform is a Windows variant, so use semi-colon.
   }
   }
   set xilinxPath $::env(XILINX)
   set xilinxPath $::env(XILINX)
   if [info exists ::env(MYXILINX)] then {
   if [info exists ::env(MYXILINX)] then {
      set xilinxPath [join [list $::env(MYXILINX) $xilinxPath] $sep]
      set xilinxPath [join [list $::env(MYXILINX) $xilinxPath] $sep]
   }
   }
   # Now look in each path of the path until we find a match.
   # Now look in each path of the path until we find a match.
   foreach xilElem [split $xilinxPath $sep] {
   foreach xilElem [split $xilinxPath $sep] {
      set checkPath ${xilElem}/$fsetName
      set checkPath ${xilElem}/$fsetName
      set checkPath [ string map { \\ / } $checkPath ]
      set checkPath [ string map { \\ / } $checkPath ]
      if { [file exists $checkPath] } {
      if { [file exists $checkPath] } {
         set fsetPath $checkPath
         set fsetPath $checkPath
         break
         break
      }
      }
   }
   }
   if { [string equal $fsetPath ""] } {
   if { [string equal $fsetPath ""] } {
      puts "ERROR: Can not determine the ISE software version."
      puts "ERROR: Can not determine the ISE software version."
      return ""
      return ""
   }
   }
   if { [catch { open $fsetPath r } fset] } {
   if { [catch { open $fsetPath r } fset] } {
      puts "ERROR: Could not open $fsetPath: $fset"
      puts "ERROR: Could not open $fsetPath: $fset"
      return ""
      return ""
   }
   }
   # have the file open, scan for the version entry.
   # have the file open, scan for the version entry.
   set sVersion ""
   set sVersion ""
   while { ![eof $fset] } {
   while { ![eof $fset] } {
      set line [gets $fset]
      set line [gets $fset]
      regexp {version=(.*)} $line match sVersion
      regexp {version=(.*)} $line match sVersion
         # The above doesn't stop looking in the file. This assumes that if
         # 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.
         # there are multiple version entries, the last one is the one we want.
   }
   }
   close $fset
   close $fset
   return $sVersion
   return $sVersion
}
}
proc CheckForIron {project_name} {
proc CheckForIron {project_name} {
   # Determine if the currently running version of ProjNav is earlier than Jade.
   # Determine if the currently running version of ProjNav is earlier than Jade.
   set version [GetIseVersion]
   set version [GetIseVersion]
   set dotLocation [string first "." $version]
   set dotLocation [string first "." $version]
   set versionBase [string range $version 0 [expr {$dotLocation - 1}]]
   set versionBase [string range $version 0 [expr {$dotLocation - 1}]]
   if {$versionBase < 9} {
   if {$versionBase < 9} {
      # The project file is newer than Iron, so take action to prevent the
      # The project file is newer than Iron, so take action to prevent the
      # file from being corrupted.
      # file from being corrupted.
      # Make the file read-only.
      # Make the file read-only.
      if {[string compare -length 7 $::tcl_platform(platform) "windows"]} {
      if {[string compare -length 7 $::tcl_platform(platform) "windows"]} {
         # The above will return 0 for a match to "windows" or "windows64".
         # 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.
         # This is the non-zero part of the if, for lin and sol.
         # Change the permissions to turn off writability.
         # Change the permissions to turn off writability.
         file attributes $project_name -permissions a-w
         file attributes $project_name -permissions a-w
      } else {
      } else {
         # On Windows, set file to read-only.
         # On Windows, set file to read-only.
         file attributes $project_name -readonly 1
         file attributes $project_name -readonly 1
      }
      }
      # And tell the user about it.
      # 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."
      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
      # In the console window
      puts $messageText
      puts $messageText
      # And with a GUI message box if possible.
      # And with a GUI message box if possible.
      ::xilinx::Dpm::TOE::loadGuiLibraries
      ::xilinx::Dpm::TOE::loadGuiLibraries
      set iInterface 0
      set iInterface 0
      set messageDisplay 0
      set messageDisplay 0
      if {[catch {
      if {[catch {
         set iInterface [Xilinx::CitP::GetInstance $::xilinx::GuiI::IMessageDlgID]
         set iInterface [Xilinx::CitP::GetInstance $::xilinx::GuiI::IMessageDlgID]
         set messageDisplay [$iInterface GetInterface $::xilinx::GuiI::IMessageDlgID]
         set messageDisplay [$iInterface GetInterface $::xilinx::GuiI::IMessageDlgID]
         if {$messageDisplay != 0} {
         if {$messageDisplay != 0} {
            # Managed to get a component to display a dialog, so use it
            # Managed to get a component to display a dialog, so use it
            set messageTitle "Incompatible Project Version (Newer)"
            set messageTitle "Incompatible Project Version (Newer)"
            set messageType 2
            set messageType 2
               # 2 corresponds to a warning dialog. TclWrapGuiI_Init.cpp doesn't put the enum into Tcl.
               # 2 corresponds to a warning dialog. TclWrapGuiI_Init.cpp doesn't put the enum into Tcl.
            set messageTimeout 300000
            set messageTimeout 300000
               # in milliseconds, 5 minutes
               # in milliseconds, 5 minutes
            set messageReturn [$messageDisplay MessageDlg $messageTitle $messageText $messageType 1 1 $messageTimeout "OK" "" ""]
            set messageReturn [$messageDisplay MessageDlg $messageTitle $messageText $messageType 1 1 $messageTimeout "OK" "" ""]
         }
         }
      } catchResult]} {
      } catchResult]} {
         # There was an error, probably because we aren't in a GUI enviroment.
         # There was an error, probably because we aren't in a GUI enviroment.
      } else {
      } else {
         # All is well.
         # All is well.
      }
      }
      set messageDisplay 0
      set messageDisplay 0
      set iInterface 0
      set iInterface 0
   }
   }
   return 1
   return 1
}
}
}
}
}
}
::xilinx::Dpm::CheckForIronPK
::xilinx::Dpm::CheckForIronPK
__OBJSTORE__/ProjectNavigator/PK
__OBJSTORE__/ProjectNavigator/PK
/__OBJSTORE__/ProjectNavigator/dpm_project_main/PK
/__OBJSTORE__/ProjectNavigator/dpm_project_main/PK
p"?__OBJSTORE__/ProjectNavigator/dpm_project_main/dpm_project_mainPK
p"?__OBJSTORE__/ProjectNavigator/dpm_project_main/dpm_project_mainPK
9
9
F__OBJSTORE__/ProjectNavigator/dpm_project_main/dpm_project_main_StrTblPK
F__OBJSTORE__/ProjectNavigator/dpm_project_main/dpm_project_main_StrTblPK
 __OBJSTORE__/ProjectNavigator11/PK
 __OBJSTORE__/ProjectNavigator11/PK
!__OBJSTORE__/ProjectNavigatorGui/PK
!__OBJSTORE__/ProjectNavigatorGui/PK
4!d.__OBJSTORE__/ProjectNavigatorGui/CViewSelectorPK
4!d.__OBJSTORE__/ProjectNavigatorGui/CViewSelectorPK
"z5__OBJSTORE__/ProjectNavigatorGui/CViewSelector_StrTblImplementationPK
"z5__OBJSTORE__/ProjectNavigatorGui/CViewSelector_StrTblImplementationPK
nvAA3__OBJSTORE__/ProjectNavigatorGui/File-SynthesisOnly\PK
nvAA3__OBJSTORE__/ProjectNavigatorGui/File-SynthesisOnly\PK
4!!:__OBJSTORE__/ProjectNavigatorGui/File-SynthesisOnly_StrTblGECKO3COM_defines.vhdPK
4!!:__OBJSTORE__/ProjectNavigatorGui/File-SynthesisOnly_StrTblGECKO3COM_defines.vhdPK
+'??6__OBJSTORE__/ProjectNavigatorGui/Library-SynthesisOnlybPK
+'??6__OBJSTORE__/ProjectNavigatorGui/Library-SynthesisOnlybPK
      ?=__OBJSTORE__/ProjectNavigatorGui/Library-SynthesisOnly_StrTblworkverilogPK
      ?=__OBJSTORE__/ProjectNavigatorGui/Library-SynthesisOnly_StrTblworkverilogPK
_}AA7__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-PK
AA7__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-PK
'6w@AA@__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_UCFbPK
AA@__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_UCFPK
,ZFLLG__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_UCF_StrTblConfigure Target DeviceImplement DesignEdit Constraints (Text)PK
,ZFLLG__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_UCF_StrTblConfigure Target DeviceImplement DesignEdit Constraints (Text)PK
ACCN__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTUREPK
CCN__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTUREPK
[fCCU__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTURE_StrTblCORE GeneratorConfigure Target DeviceImplement DesignPK
[fCCU__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_VHDL_ARCHITECTURE_StrTblCORE GeneratorConfigure Target DeviceImplement DesignPK
S-??@__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_XCOPK
S-??@__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_XCOPK
M*>..G__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_XCO_StrTblCORE GeneratorAdd Existing SourcePK
M*>..G__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-DESUT_XCO_StrTblCORE GeneratorAdd Existing SourcePK
SHH>__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-_StrTblConfigure Target DeviceImplement DesignAdd Existing SourcePK
SRII>__OBJSTORE__/ProjectNavigatorGui/Process-SynthesisOnly-_StrTblConfigure Target DeviceImplement DesignRegenerate All CoresPK
~2MMA__OBJSTORE__/ProjectNavigatorGui/Source-SynthesisOnly-AutoCompile(PK
&J!MMA__OBJSTORE__/ProjectNavigatorGui/Source-SynthesisOnly-AutoCompilePK
D99H__OBJSTORE__/ProjectNavigatorGui/Source-SynthesisOnly-AutoCompile_StrTblgpif_com_test - behaviour (gpif_com_test.vhd)PK
D99H__OBJSTORE__/ProjectNavigatorGui/Source-SynthesisOnly-AutoCompile_StrTblgpif_com_test - behaviour (gpif_com_test.vhd)PK
 __OBJSTORE__/_ProjRepoInternal_/PK
 __OBJSTORE__/_ProjRepoInternal_/PK
__OBJSTORE__/common/PK
__OBJSTORE__/common/PK
__OBJSTORE__/xreport/PK
__OBJSTORE__/xreport/PK
>5__OBJSTORE__/xreport/Gc_RvReportViewer-Current-ModulePK
>5__OBJSTORE__/xreport/Gc_RvReportViewer-Current-ModulePK
    <__OBJSTORE__/xreport/Gc_RvReportViewer-Current-Module_StrTblgpif_com_testPK
    <__OBJSTORE__/xreport/Gc_RvReportViewer-Current-Module_StrTblgpif_com_testPK
TX}}=__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-USB_TMC_IP
TX}}=__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-USB_TMC_IP

 !"#$%&')*+,-./012456789:;<=@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK

 !"#$%&')*+,-./012456789:;<=@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK
==D__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-USB_TMC_IP_StrTbl 
2009-12-07T10:33:28 USB_TMC_IP Unknown 2009-12-07T10:33:28
==D__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-USB_TMC_IP_StrTbl 
2009-12-07T10:33:28 USB_TMC_IP Unknown 2009-12-07T10:33:28
YU}}@__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-gpif_com_test
YU}}@__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-gpif_com_test

 !"#$%&'()*+,-./0123456789:;<=>?@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK

 !"#$%&'()*+,-./0123456789:;<=>?@4ABCD4EFGHIJKLMNOPQRS4TUBVWXY4Z[\]^_`abcd4efg4hijkl4m4no4pqrstuv4w4xyz{|}4~PK
2n;n;G__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-gpif_com_test_StrTbl 
2010-01-15T15:11:24 gpif_com_test 2010-01-15T14:30:54 2010-01-12T11:31:44
PK
;\7n;n;G__OBJSTORE__/xreport/Gc_RvReportViewer-Module-Data-gpif_com_test_StrTbl 
2010-01-28T11:58:54 gpif_com_test 2010-01-28T11:34:30 2010-01-12T11:31:44
PK
ێA__OBJSTORE__/xreport/Gc_RvReportViewer-Module-DataFactory-Default
ێ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

 !"#$%&!'()*+,-./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
$`=`=H__OBJSTORE__/xreport/Gc_RvReportViewer-Module-DataFactory-Default_StrTbl
Wed, 18 June 2008, 10:00:00 MDT Unknown Unknown
PK

__REGISTRY__/PK

__REGISTRY__/PK
__REGISTRY__/Autonym/PK
__REGISTRY__/Autonym/PK
__REGISTRY__/Autonym/regkeysPK
__REGISTRY__/Autonym/regkeysPK
#__REGISTRY__/ExpandedNetlistEngine/PK
#__REGISTRY__/ExpandedNetlistEngine/PK
*__REGISTRY__/ExpandedNetlistEngine/regkeysPK
*__REGISTRY__/ExpandedNetlistEngine/regkeysPK
 __REGISTRY__/HierarchicalDesign/PK
 __REGISTRY__/HierarchicalDesign/PK
*__REGISTRY__/HierarchicalDesign/HDProject/PK
*__REGISTRY__/HierarchicalDesign/HDProject/PK
BڂRR1__REGISTRY__/HierarchicalDesign/HDProject/regkeysCommandLine-Map

ii1__REGISTRY__/HierarchicalDesign/HDProject/regkeysCommandLine-Map
s
s
CommandLine-Ngdbuild
CommandLine-Ngdbuild
/home/chrigi/bin/11.1/ISE/bin/lin64/unwrapped/ngdbuild -ise GECKO3COM_simple.ise -intstyle ise -dd _ngo -nt timestamp -i -p xc3s4000-fg676-4 gpif_com_test_cs.ngc gpif_com_test.ngd
/home/chrigi/bin/11.1/ISE/bin/lin64/unwrapped/ngdbuild -ise GECKO3COM_simple.ise -intstyle ise -dd _ngo -sd coregenerator -aul -nt timestamp -i -p xc3s4000-fg676-4 gpif_com_test_cs.ngc gpif_com_test.ngd
s
s
CommandLine-Par
CommandLine-Par
s
s
CommandLine-Xst
CommandLine-Xst
s
s
Previous-NGD
Previous-NGD
s
s
Previous-NGM
Previous-NGM
s
s
Previous-Packed-NCD
Previous-Packed-NCD
s
s
Previous-Routed-NCD
Previous-Routed-NCD
s
s
PK
PK
'__REGISTRY__/HierarchicalDesign/regkeysPK
'__REGISTRY__/HierarchicalDesign/regkeysPK
__REGISTRY__/ProjectNavigator/PK
__REGISTRY__/ProjectNavigator/PK
w##%__REGISTRY__/ProjectNavigator/regkeysISE_VERSION_LAST_SAVED_WITH
w##%__REGISTRY__/ProjectNavigator/regkeysISE_VERSION_LAST_SAVED_WITH
11.1
11.1
s
s
PK
PK
 __REGISTRY__/ProjectNavigator11/PK
 __REGISTRY__/ProjectNavigator11/PK
9dEE'__REGISTRY__/ProjectNavigator11/regkeysISE_VERSION_LAST_SAVED_WITH
9dEE'__REGISTRY__/ProjectNavigator11/regkeysISE_VERSION_LAST_SAVED_WITH
11.1
11.1
s
s
XISE_FILE
XISE_FILE
GECKO3COM_simple.xise
GECKO3COM_simple.xise
s
s
PK
PK
!__REGISTRY__/ProjectNavigatorGui/PK
!__REGISTRY__/ProjectNavigatorGui/PK
(__REGISTRY__/ProjectNavigatorGui/regkeysPK
(__REGISTRY__/ProjectNavigatorGui/regkeysPK
__REGISTRY__/XSLTProcess/PK
__REGISTRY__/XSLTProcess/PK
q33 __REGISTRY__/XSLTProcess/regkeysClientMessageOutputFile
q33 __REGISTRY__/XSLTProcess/regkeysClientMessageOutputFile
_xmsgs/XSLTProcess.xmsgs
_xmsgs/XSLTProcess.xmsgs
s
s
PK
PK
 __REGISTRY__/_ProjRepoInternal_/PK
 __REGISTRY__/_ProjRepoInternal_/PK
8H'__REGISTRY__/_ProjRepoInternal_/regkeysISE_VERSION_CREATED_WITH
8H'__REGISTRY__/_ProjRepoInternal_/regkeysISE_VERSION_CREATED_WITH
9.1.03i
9.1.03i
s
s
ISE_VERSION_LAST_SAVED_WITH
ISE_VERSION_LAST_SAVED_WITH
11.1
11.1
s
s
LastRepoDir
LastRepoDir
/home/chrigi/bfh-work/GECKO3COM/gecko3com-ip/core/
/home/chrigi/bfh-work/GECKO3COM/gecko3com-ip/core/
s
s
OBJSTORE_VERSION
OBJSTORE_VERSION
1.3
1.3
s
s
PROJECT_CREATION_TIMESTAMP
PROJECT_CREATION_TIMESTAMP
UNINITIALIZED
UNINITIALIZED
s
s
REGISTRY_VERSION
REGISTRY_VERSION
1.1
1.1
s
s
REPOSITORY_VERSION
REPOSITORY_VERSION
1.1
1.1
s
s
PK
PK
__REGISTRY__/bitgen/PK
__REGISTRY__/bitgen/PK
6..__REGISTRY__/bitgen/regkeysClientMessageOutputFile
6..__REGISTRY__/bitgen/regkeysClientMessageOutputFile
_xmsgs/bitgen.xmsgs
_xmsgs/bitgen.xmsgs
s
s
PK
PK
__REGISTRY__/bitinit/PK
__REGISTRY__/bitinit/PK
Л]//__REGISTRY__/bitinit/regkeysClientMessageOutputFile
Л]//__REGISTRY__/bitinit/regkeysClientMessageOutputFile
_xmsgs/bitinit.xmsgs
_xmsgs/bitinit.xmsgs
s
s
PK
PK
__REGISTRY__/common/PK
__REGISTRY__/common/PK
;-4__REGISTRY__/common/regkeysIncrementalMessagingEnabled
;-4__REGISTRY__/common/regkeysIncrementalMessagingEnabled
false
false
s
s
MessageCaptureEnabled
MessageCaptureEnabled
true
true
s
s
MessageFilterFile
MessageFilterFile
filter.filter
filter.filter
s
s
MessageFilteringEnabled
MessageFilteringEnabled
false
false
s
s
RunOnce
RunOnce
#/PnAutoRun/Scripts/RunOnce_tcl
#/PnAutoRun/Scripts/RunOnce_tcl
s
s
PK
PK
__REGISTRY__/cpldfit/PK
__REGISTRY__/cpldfit/PK
S//__REGISTRY__/cpldfit/regkeysClientMessageOutputFile
S//__REGISTRY__/cpldfit/regkeysClientMessageOutputFile
_xmsgs/cpldfit.xmsgs
_xmsgs/cpldfit.xmsgs
s
s
PK
PK
__REGISTRY__/dumpngdio/PK
__REGISTRY__/dumpngdio/PK
Nu11__REGISTRY__/dumpngdio/regkeysClientMessageOutputFile
Nu11__REGISTRY__/dumpngdio/regkeysClientMessageOutputFile
_xmsgs/dumpngdio.xmsgs
_xmsgs/dumpngdio.xmsgs
s
s
PK
PK
__REGISTRY__/fuse/PK
__REGISTRY__/fuse/PK
!6,,__REGISTRY__/fuse/regkeysClientMessageOutputFile
!6,,__REGISTRY__/fuse/regkeysClientMessageOutputFile
_xmsgs/fuse.xmsgs
_xmsgs/fuse.xmsgs
s
s
PK
PK
__REGISTRY__/hprep6/PK
__REGISTRY__/hprep6/PK
a..__REGISTRY__/hprep6/regkeysClientMessageOutputFile
a..__REGISTRY__/hprep6/regkeysClientMessageOutputFile
_xmsgs/hprep6.xmsgs
_xmsgs/hprep6.xmsgs
s
s
PK
PK
__REGISTRY__/idem/PK
__REGISTRY__/idem/PK
,,__REGISTRY__/idem/regkeysClientMessageOutputFile
,,__REGISTRY__/idem/regkeysClientMessageOutputFile
_xmsgs/idem.xmsgs
_xmsgs/idem.xmsgs
s
s
PK
PK
__REGISTRY__/libgen/PK
__REGISTRY__/libgen/PK
ħ..__REGISTRY__/libgen/regkeysClientMessageOutputFile
ħ..__REGISTRY__/libgen/regkeysClientMessageOutputFile
_xmsgs/libgen.xmsgs
_xmsgs/libgen.xmsgs
s
s
PK
PK
__REGISTRY__/map/PK
__REGISTRY__/map/PK
[++__REGISTRY__/map/regkeysClientMessageOutputFile
[++__REGISTRY__/map/regkeysClientMessageOutputFile
_xmsgs/map.xmsgs
_xmsgs/map.xmsgs
s
s
PK
PK
__REGISTRY__/netgen/PK
__REGISTRY__/netgen/PK
e6~..__REGISTRY__/netgen/regkeysClientMessageOutputFile
e6~..__REGISTRY__/netgen/regkeysClientMessageOutputFile
_xmsgs/netgen.xmsgs
_xmsgs/netgen.xmsgs
s
s
PK
PK
__REGISTRY__/ngc2edif/PK
__REGISTRY__/ngc2edif/PK
OUś00__REGISTRY__/ngc2edif/regkeysClientMessageOutputFile
OUś00__REGISTRY__/ngc2edif/regkeysClientMessageOutputFile
_xmsgs/ngc2edif.xmsgs
_xmsgs/ngc2edif.xmsgs
s
s
PK
PK
__REGISTRY__/ngcbuild/PK
__REGISTRY__/ngcbuild/PK
E00__REGISTRY__/ngcbuild/regkeysClientMessageOutputFile
E00__REGISTRY__/ngcbuild/regkeysClientMessageOutputFile
_xmsgs/ngcbuild.xmsgs
_xmsgs/ngcbuild.xmsgs
s
s
PK
PK
__REGISTRY__/ngdbuild/PK
__REGISTRY__/ngdbuild/PK
Jx00__REGISTRY__/ngdbuild/regkeysClientMessageOutputFile
Jx00__REGISTRY__/ngdbuild/regkeysClientMessageOutputFile
_xmsgs/ngdbuild.xmsgs
_xmsgs/ngdbuild.xmsgs
s
s
PK
PK
__REGISTRY__/par/PK
__REGISTRY__/par/PK
++__REGISTRY__/par/regkeysClientMessageOutputFile
++__REGISTRY__/par/regkeysClientMessageOutputFile
_xmsgs/par.xmsgs
_xmsgs/par.xmsgs
s
s
PK
PK
__REGISTRY__/platgen/PK
__REGISTRY__/platgen/PK
t//__REGISTRY__/platgen/regkeysClientMessageOutputFile
t//__REGISTRY__/platgen/regkeysClientMessageOutputFile
_xmsgs/platgen.xmsgs
_xmsgs/platgen.xmsgs
s
s
PK
PK
__REGISTRY__/runner/PK
__REGISTRY__/runner/PK
p7..__REGISTRY__/runner/regkeysClientMessageOutputFile
p7..__REGISTRY__/runner/regkeysClientMessageOutputFile
_xmsgs/runner.xmsgs
_xmsgs/runner.xmsgs
s
s
PK
PK
__REGISTRY__/simgen/PK
__REGISTRY__/simgen/PK
9M=..__REGISTRY__/simgen/regkeysClientMessageOutputFile
9M=..__REGISTRY__/simgen/regkeysClientMessageOutputFile
_xmsgs/simgen.xmsgs
_xmsgs/simgen.xmsgs
s
s
PK
PK
__REGISTRY__/taengine/PK
__REGISTRY__/taengine/PK
00__REGISTRY__/taengine/regkeysClientMessageOutputFile
00__REGISTRY__/taengine/regkeysClientMessageOutputFile
_xmsgs/taengine.xmsgs
_xmsgs/taengine.xmsgs
s
s
PK
PK
__REGISTRY__/trce/PK
__REGISTRY__/trce/PK


,,__REGISTRY__/trce/regkeysClientMessageOutputFile
,,__REGISTRY__/trce/regkeysClientMessageOutputFile
_xmsgs/trce.xmsgs
_xmsgs/trce.xmsgs
s
s
PK
PK
__REGISTRY__/tsim/PK
__REGISTRY__/tsim/PK
\-`,,__REGISTRY__/tsim/regkeysClientMessageOutputFile
\-`,,__REGISTRY__/tsim/regkeysClientMessageOutputFile
_xmsgs/tsim.xmsgs
_xmsgs/tsim.xmsgs
s
s
PK
PK
__REGISTRY__/vhpcomp/PK
__REGISTRY__/vhpcomp/PK
Di//__REGISTRY__/vhpcomp/regkeysClientMessageOutputFile
Di//__REGISTRY__/vhpcomp/regkeysClientMessageOutputFile
_xmsgs/vhpcomp.xmsgs
_xmsgs/vhpcomp.xmsgs
s
s
PK
PK
__REGISTRY__/vlogcomp/PK
__REGISTRY__/vlogcomp/PK
]00__REGISTRY__/vlogcomp/regkeysClientMessageOutputFile
]00__REGISTRY__/vlogcomp/regkeysClientMessageOutputFile
_xmsgs/vlogcomp.xmsgs
_xmsgs/vlogcomp.xmsgs
s
s
PK
PK
__REGISTRY__/xpwr/PK
__REGISTRY__/xpwr/PK
H,,,__REGISTRY__/xpwr/regkeysClientMessageOutputFile
H,,,__REGISTRY__/xpwr/regkeysClientMessageOutputFile
_xmsgs/xpwr.xmsgs
_xmsgs/xpwr.xmsgs
s
s
PK
PK
__REGISTRY__/xreport/PK
__REGISTRY__/xreport/PK
__REGISTRY__/xreport/regkeysPK
__REGISTRY__/xreport/regkeysPK
__REGISTRY__/xst/PK
__REGISTRY__/xst/PK
++__REGISTRY__/xst/regkeysClientMessageOutputFile
++__REGISTRY__/xst/regkeysClientMessageOutputFile
_xmsgs/xst.xmsgs
_xmsgs/xst.xmsgs
s
s
PK
PK
VversionREPOSITORY_VERSION
VversionREPOSITORY_VERSION
1.1
1.1
REGISTRY_VERSION
REGISTRY_VERSION
1.1
1.1
OBJSTORE_VERSION
OBJSTORE_VERSION
1.3
1.3
ISE_VERSION_CREATED_WITH
ISE_VERSION_CREATED_WITH
9.1.03i
9.1.03i
ISE_VERSION_LAST_SAVED_WITH
ISE_VERSION_LAST_SAVED_WITH
11.1
11.1
 
 

powered by: WebSVN 2.1.0

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