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.

16 lines
338B

  1. CODE (br)
  2. L1 BSET ( used in ?br and loop )
  3. PC ORG @ 0x3d + ! ( stable ABI JP )
  4. E 0 IY+ LDrIXY, D 0 LDri,
  5. 7 E BIT, IFNZ, D DECr, THEN,
  6. DE ADDIYd,
  7. ;CODE
  8. CODE (?br)
  9. PC ORG @ 0x41 + ! ( stable ABI JP )
  10. HL POP,
  11. HLZ,
  12. JRZ, L1 BWR ( br + 1. False, branch )
  13. ( True, skip next byte and don't branch )
  14. IY INCd,
  15. ;CODE