Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ianj-als/pcl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Johnson <ian.johnson@appliedlanguage.com>2013-06-03 16:12:22 +0400
committerIan Johnson <ian.johnson@appliedlanguage.com>2013-06-03 16:37:26 +0400
commitfe569f6ad720306e0f354922494eb0203befb165 (patch)
tree740bcece1fe5be7d578b0695f4582b592cce3e90 /examples
parent66fbb4f2d38a9ed026ad20474c8dbb4e1a7b5ad0 (diff)
Removed unused example file
Diffstat (limited to 'examples')
-rw-r--r--examples/debug_stubbing/p.pcl19
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/debug_stubbing/p.pcl b/examples/debug_stubbing/p.pcl
deleted file mode 100644
index aa7dd9d..0000000
--- a/examples/debug_stubbing/p.pcl
+++ /dev/null
@@ -1,19 +0,0 @@
-import parallel_component as para
-import sequential_component as seq
-
-component p
- inputs a, b
- outputs (c, d), (para_e, para_f, para_g, para_h)
- declare
- para := new para
- as
- wire a -> c, b -> d &&&
-
- (split >>>
-
- wire (a -> a, b -> b), (a -> c, b -> d) >>>
-
- para >>>
-
- merge top[e] -> para_e, top[f] -> para_f,
- bottom[g] -> para_g, bottom[h] -> para_h)