# File lib/ruby-vpi/vpi.rb, line 613
613:     def integer= aValue
614:       self.low  = aValue & INTEGER_MASK
615:       self.high = (aValue >> INTEGER_BITS) & INTEGER_MASK
616:     end