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.

15 lines
232B

  1. ( bitwise rotation ops have a similar sig )
  2. : OProt ( r -- )
  3. CREATE C,
  4. DOES>
  5. 0xcb A,
  6. C@ ( r op )
  7. OR A,
  8. ;
  9. 0x10 OProt RL,
  10. 0x00 OProt RLC,
  11. 0x18 OProt RR,
  12. 0x08 OProt RRC,
  13. 0x20 OProt SLA,
  14. 0x38 OProt SRL,