resistance was useless, wilson is now part of the collective (as intel)

This commit is contained in:
Torsten Ruger
2014-05-08 15:09:56 +03:00
parent f7f0eee31a
commit f0ad11bf8c
15 changed files with 5255 additions and 0 deletions

20
lib/intel/immediate.rb Normal file
View 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