From a919518e63dda8ef823a066458db4a15139a46f6 Mon Sep 17 00:00:00 2001
From: Daniela Genius <Daniela.Genius@lip6.fr>
Date: Tue, 27 Sep 2016 11:22:39 +0000
Subject: [PATCH] bugfix

---
 src/ddtranslatorSoclib/toTopCell/Declaration.java  | 6 ++++--
 src/ddtranslatorSoclib/toTopCell/MappingTable.java | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/ddtranslatorSoclib/toTopCell/Declaration.java b/src/ddtranslatorSoclib/toTopCell/Declaration.java
index 83f7b7654a..ed58a37eb9 100755
--- a/src/ddtranslatorSoclib/toTopCell/Declaration.java
+++ b/src/ddtranslatorSoclib/toTopCell/Declaration.java
@@ -374,8 +374,10 @@ else {
 	      }
 	  else{ 
 	      //processor(s) and link to central interconnect are initiators
-	      crossbar.setNbOfAttachedInitiators(2);	 
-	      crossbar.setNbOfAttachedTargets(2);
+	      //crossbar.setNbOfAttachedInitiators(2);	 
+	      //crossbar.setNbOfAttachedTargets(2);
+	      crossbar.setNbOfAttachedInitiators(1);//DG 27.09.	 
+	      crossbar.setNbOfAttachedTargets(1);//DG 27.09.
 	  }
 
           System.out.println("initiators: "+crossbar.getNbOfAttachedInitiators());	
diff --git a/src/ddtranslatorSoclib/toTopCell/MappingTable.java b/src/ddtranslatorSoclib/toTopCell/MappingTable.java
index e093521c7a..8735a5847f 100755
--- a/src/ddtranslatorSoclib/toTopCell/MappingTable.java
+++ b/src/ddtranslatorSoclib/toTopCell/MappingTable.java
@@ -241,7 +241,7 @@ public class MappingTable {
       int SEG_RAM_BASE   =        268435456;    
       int    cluster = 0;
 
-      //DG 1.9. on cluster 0 only	 
+      	 
       //   mapping += "maptab.add(Segment(\"icu" + cluster + "\",0x"+ Integer.toHexString(SEG_ICU_BASE)+", 0x"+ Integer.toHexString(SEG_ICU_SIZE)+", IntTab(0,9), false));" + CR;
   mapping += "maptab.add(Segment(\"vci_xicu\",0x"+ Integer.toHexString(SEG_ICU_BASE)+", 0x"+ Integer.toHexString(SEG_ICU_SIZE)+", IntTab(0,9), false));" + CR;
   //mapping += "maptab.add(Segment(\"dma" + cluster + "\", 0x"+ Integer.toHexString(SEG_DMA_BASE)+", 0x"+ Integer.toHexString(SEG_DMA_SIZE)+", IntTab(0,10), false));" + CR;
-- 
GitLab