adding Tue False and Nil Class to Parfait

and boot
This commit is contained in:
Torsten Ruger
2018-03-19 21:18:56 +05:30
parent d195ef68da
commit 99ced4369a
4 changed files with 19 additions and 6 deletions

View File

@ -15,7 +15,7 @@ module Arm
class ArmMachine
# conditions specify all the possibilities for branches. Branches are b + condition
# Example: beq means brach if equal.
# Example: beq means branch if equal.
# :al means always, so bal is an unconditional branch (but b() also works)
CONDITIONS = [:al ,:eq ,:ne ,:lt ,:le ,:ge,:gt ,:cs ,:mi ,:hi ,:cc ,:pl,:ls ,:vc ,:vs]