Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
624B

  1. I/O
  2. (parse) a -- n Parses string at a as a number and push the
  3. result in n as well as whether parsing was a
  4. success in f (false = failure, true =
  5. success)
  6. (print) a -- Print string at addr a. Stops at 0x0 or 0xd.
  7. . n -- Print n in its decimal form
  8. .x n -- Print n's LSB in hex form. Always 2
  9. characters.
  10. .X n -- Print n in hex form. Always 4 characters.
  11. Numbers are never considered negative.
  12. "-1 .X" --> ffff
  13. (cont.)