fix naming mistakes fo Word.get/set macros

This commit is contained in:
2020-03-12 17:54:39 +02:00
parent d125a1528a
commit 5c13ea1433
4 changed files with 9 additions and 7 deletions

View File

@ -41,8 +41,10 @@ module Sol
"Integer.ls" => "def <<; X.int_operator(:<<);end",
"Integer.rs" => "def >>; X.int_operator(:>>);end",
"Word.put" => "def putstring(at); X.putstring;end",
"Word.set" => "def set_internal_byte(at, val); X.set_internal_byte;end",
"Word.get" => "def get_internal_byte(at); X.get_internal_byte;end",
"Word.set" => "def set_internal_word(at, val); X.set_internal_word;end",
"Word.get" => "def get_internal_word(at); X.get_internal_word;end",
"Word.set_byte" => "def set_internal_byte(at, val); X.set_internal_byte;end",
"Word.get_byte" => "def get_internal_byte(at); X.get_internal_byte;end",
}
end
def self.builtin_code