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

  1. ( bitwise rotation ops have a similar sig )
  2. ( r -- )
  3. : OProt
  4. CREATE C,
  5. DOES>
  6. 0xcb A,
  7. C@ ( r op )
  8. OR A,
  9. ;
  10. 0x10 OProt RLr,
  11. 0x00 OProt RLCr,
  12. 0x18 OProt RRr,
  13. 0x08 OProt RRCr,
  14. 0x20 OProt SLAr,
  15. 0x38 OProt SRLr,