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.

17 lines
275B

  1. ( a -- k12, absolute addr a, relative to PC in a k12 addr )
  2. : _r7ffc DUP 0x7ff > IF _oor THEN ;
  3. : _raddr12
  4. PC - DUP 0< IF 0x800 + _r7ffc 0x800 OR ELSE _r7ffc THEN ;
  5. : RJMP _raddr12 0xc000 OR ;
  6. : RCALL _raddr12 0xd000 OR ;
  7. : RJMP, RJMP A,, ; : RCALL, RCALL A,, ;