mirror of
git://projects.qi-hardware.com/fped.git
synced 2025-04-21 12:27:27 +03:00
- named vectors in sc89.fpd
- README: described use of "loop" as "if" and change fbga.fpd to use this git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5428 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
9
README
9
README
@@ -331,6 +331,15 @@ following loop would not execute at all:
|
||||
|
||||
loop n = 1, 0
|
||||
|
||||
This can be used to implement conditional execution. For example,
|
||||
the items in the following frame would be instantiated if the
|
||||
variable "enable" is set to 1 but not it is set to 0:
|
||||
|
||||
frame ... {
|
||||
loop dummy = 1, enable
|
||||
...
|
||||
}
|
||||
|
||||
When a loop is executed, the objects contained in the body of the
|
||||
enclosing frame are generated for each value of the variable. If
|
||||
a frame contains multiple loops, all possible combinations of the
|
||||
|
||||
Reference in New Issue
Block a user