Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
399B

  1. This is because there's bitwise ORing involved in the creation
  2. of the final opcode, which makes z80a's approach impractical.
  3. This makes labelling a bit different too. Instead of expecting
  4. label words after the naked branching op, we rather have label
  5. words expecting branching wordref as an argument. Examples:
  6. L2 ' BRTS FLBL! ( branch forward to L2 )
  7. L1 ' RJMP LBL, ( branch backward to L1 )