15 lines
197 B
Ruby
15 lines
197 B
Ruby
|
module Mom
|
||
|
|
||
|
# unconditional jump to the instruction given as target
|
||
|
#
|
||
|
class Jump < Instruction
|
||
|
attr_reader :target
|
||
|
|
||
|
def initialize(target)
|
||
|
@target = target
|
||
|
end
|
||
|
end
|
||
|
|
||
|
|
||
|
end
|