sorting mom instructions and statements into separate dirs

This commit is contained in:
Torsten Ruger
2018-03-13 16:51:33 +05:30
parent 2779045caa
commit 20a88f9ac8
17 changed files with 21 additions and 19 deletions

View File

@@ -0,0 +1,14 @@
module Mom
# unconditional jump to the instruction given as target
#
class Jump < Instruction
attr_reader :target
def initialize(target)
@target = target
end
end
end