removing unconditional

just Branch is fine
This commit is contained in:
Torsten Ruger
2018-04-02 19:30:34 +03:00
parent 299a130761
commit 65d57c8c7c
4 changed files with 6 additions and 10 deletions

View File

@ -17,7 +17,7 @@ module Risc
end
# dynamic version of an Unconditional branch that jumps to the contents
# dynamic version of an Branch branch that jumps to the contents
# of a register instead of a hardcoded address
# As Branches jump to Labels, this is not derived from Branch
# PS: to conditionally jump to a dynamic adddress we do a normal branch
@ -31,10 +31,6 @@ module Risc
attr_reader :register
end
class Unconditional < Branch
end
class IsZero < Branch
end