]> AND Private Git Repository - blast.git/blobdiff - ReferenceInterface.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
finished testbench generation
[blast.git] / ReferenceInterface.h
index d5219b625f8875d30c50f4efa748b4cb07f3bb48..68c01797153eb8f64c66fdd1a0e47a0b5f05b23a 100644 (file)
@@ -19,10 +19,11 @@ class ReferenceInterface : public AbstractInterface {
 public :  
 
   ReferenceInterface(AbstractBlock *_owner) throw(Exception);
-  ReferenceInterface(AbstractBlock* _owner, const QString& _name, const QString& _type, const QString& _width, int _direction, int _purpose, int _multiplicity=1) throw (Exception);
+  ReferenceInterface(AbstractBlock* _owner, const QString& _name, int _direction, int _purpose, const QString& _type, const QString& _width, int _endianess = LittleEndian, int _multiplicity=1) throw (Exception);
 
   // getters
-  inline int getMultiplicity() { return multiplicity; }  
+  inline int getMultiplicity() { return multiplicity; }
+  int getClockDomain() throw(Exception); // determine at which freq. is synchronized iface
   // setters
   void setMultiplicity(int _multiplicity);
 
@@ -30,6 +31,7 @@ public :
   bool isReferenceInterface();
 
   // others
+  bool checkSetClockIface(QString _name);
 
   static int translatePurpose(const QString& txt);  
   static int translateMultiplicity(const QString& txt);