2017-04-10 10:47:18 +02:00
|
|
|
# The *essential* step from vool to risc, is the one from a language to a machine. From statements
|
|
|
|
# that hang in the air, to an instruction set.
|
2018-03-13 12:21:33 +01:00
|
|
|
#
|
2017-04-10 10:47:18 +02:00
|
|
|
# ### Tree based: So almost 1-1 from vool
|
|
|
|
#
|
|
|
|
# ### Use object memory : object to object transfer + no registers
|
|
|
|
#
|
|
|
|
# ### Instruction based
|
|
|
|
#
|
|
|
|
# So a machine than language. No control structures, but compare and jump instructions.
|
|
|
|
# No send or call, just objects and jump.
|
|
|
|
# Machine capabilities (instructions) for basic operations. Use of macros for higher level.
|
|
|
|
|
|
|
|
module Mom
|
|
|
|
end
|
|
|
|
|
2018-03-13 12:27:24 +01:00
|
|
|
require_relative "instruction/instruction.rb"
|
|
|
|
require_relative "statement/statement.rb"
|