Mirror of CollapseOS
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

17 satır
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.)