little cleanup

code climate inspired
This commit is contained in:
Torsten Ruger
2018-03-26 14:15:48 +03:00
parent 60617ca632
commit 231025389a
3 changed files with 15 additions and 13 deletions

View File

@ -5,6 +5,13 @@ class String
end
# The RiscMachine, is an abstract machine with registers. Think of it as an arm machine with
# normal instruction names. It is not however an abstraction of existing hardware, but only
# of that subset that we need.
# See risc/Readme
module Risc
end
require_relative "risc/padding"
require_relative "risc/positioned"