From ee9d405bc917be3f596ccd2ffd2d7ddc01687d31 Mon Sep 17 00:00:00 2001 From: Nathanael Sensfelder Date: Mon, 28 Aug 2017 16:27:12 +0200 Subject: Starts the Instance Calculator --- instance-calculator/src/VHDLProcess.java | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 instance-calculator/src/VHDLProcess.java (limited to 'instance-calculator/src/VHDLProcess.java') diff --git a/instance-calculator/src/VHDLProcess.java b/instance-calculator/src/VHDLProcess.java new file mode 100644 index 0000000..f2f27e7 --- /dev/null +++ b/instance-calculator/src/VHDLProcess.java @@ -0,0 +1,21 @@ +import java.util.*; + +public class VHDLProcess +{ + private static final Map FROM_ID; + + static + { + FROM_ID = new HashMap(); + } + + private final List accessed_wfm; + private final String id; + + private VHDLProcess (final String id) + { + this.id = id; + + ports = new ArrayList(); + } +} -- cgit v1.2.3-70-g09d2