Show
Ignore:
Timestamp:
07/08/07 05:51:41 (17 months ago)
Author:
krobillard
Message:

Component inputs can now be declared /quiet or /strobe

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/thune/thread_safe/doc/UserManual

    r426 r430  
    286286 
    287287    c1 probe connect 
     288 
     289 
     290Quiet Inputs 
     291~~~~~~~~~~~~ 
     292 
     293Inputs can be declared with a */quiet* selector to prevent them from 
     294activating the component when set. 
     295 
     296Here is an example component with an enable switch:: 
     297 
     298    [in enable/quiet -- out] [enable ift (in 2 mul :out)] component :mul2 
     299 
     300    false :mul2/enable    ; No activation 
     301    2 :mul2/in            ; Activation, but no output 
     302    true  :mul2/enable    ; No activation 
     303    2 :mul2/in            ; Activation with output 
     304 
     305 
     306Strobe Inputs 
     307~~~~~~~~~~~~~ 
     308 
     309A single input can be declared with a */strobe* selector.  This input will 
     310then control when the component activates.  No other input will cause an 
     311activation. 
    288312 
    289313