summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'instance-calculator/src/VHDLArchitecture.java')
-rw-r--r--instance-calculator/src/VHDLArchitecture.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/instance-calculator/src/VHDLArchitecture.java b/instance-calculator/src/VHDLArchitecture.java
index 2834ab3..7f3be10 100644
--- a/instance-calculator/src/VHDLArchitecture.java
+++ b/instance-calculator/src/VHDLArchitecture.java
@@ -23,6 +23,7 @@ public class VHDLArchitecture
final String arch_id
)
{
+ /* TODO */
return false;
}
@@ -32,6 +33,7 @@ public class VHDLArchitecture
final String e_id
)
{
+ /* TODO */
return false;
}
@@ -40,6 +42,8 @@ public class VHDLArchitecture
private final List<String> components;
private final String id;
+ private VHDLEntity entity;
+
private VHDLArchitecture (final String id)
{
this.id = id;
@@ -47,4 +51,9 @@ public class VHDLArchitecture
processes = new ArrayList<String>();
components = new ArrayList<String>();
}
+
+ public VHDLEntity get_entity ()
+ {
+ return entity;
+ }
}