Method: Nor3#abelout

Defined in:
lib/Nor3.rb

#abeloutObject

This method returns the specific ABEL code to be output for this Inst object based on its connections on its input ports. These connections are defined in the abelout method of this object’s superclass, FourPorts.



5
6
7
8
# File 'lib/Nor3.rb', line 5

def abelout
  super
  "#{self.name}p3 = !(#{@p0} # #{@p1} # #{@p2});\n"
end