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
403B

  1. ( Relative jumps are a bit special. They're supposed to take
  2. an argument, but they don't take it so they can work with
  3. the label system. Therefore, relative jumps are an OP1 but
  4. when you use them, you're expected to write the offset
  5. afterwards yourself. )
  6. 0x18 OP1 JR, 0x10 OP1 DJNZ,
  7. 0x38 OP1 JRC, 0x30 OP1 JRNC,
  8. 0x28 OP1 JRZ, 0x20 OP1 JRNZ,