resistance was useless, wilson is now part of the collective (as intel)
This commit is contained in:
20
lib/intel/immediate.rb
Normal file
20
lib/intel/immediate.rb
Normal file
@@ -0,0 +1,20 @@
|
||||
require 'intel/operand'
|
||||
|
||||
module Intel
|
||||
##
|
||||
# Immediate is an Integer wrapper so that we know the machine we're
|
||||
# dealing with when we apply commands
|
||||
|
||||
class Immediate < Operand
|
||||
attr_accessor :value
|
||||
|
||||
def initialize( bits = nil )
|
||||
super(nil , bits)
|
||||
end
|
||||
|
||||
def immediate?
|
||||
true
|
||||
end
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user