# File lib/ruby-vpi/vpi.rb, line 495
495:     def integer= aValue
496:       self.low = aValue & INTEGER_MASK
497:       self.high = (aValue >> INTEGER_BITS) & INTEGER_MASK
498:     end