Mirror of CollapseOS
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
605B

  1. This assembler works very much like Z80 assembler (B200) so
  2. refer to this documentation first. Here, we document specifici-
  3. ties.
  4. All mnemonics in AVR have a single signature. Therefore, we
  5. don't need any "argtype" suffixes.
  6. Registers are referred to with consts R0-R31. There is
  7. X, Y, Z, X+, Y+, Z+, X-, Y-, Z- for appropriate ops (LD, ST).
  8. XL, XH, YL, YH, ZL, ZH are simple aliases to R26-R31.
  9. Branching works differently. Instead of expecting a byte to be
  10. written after the naked op, branching words expect a displace-
  11. ment argument.
  12. (cont.)