Mirror of CollapseOS
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

16 satır
537B

  1. ( With dst being assumed to be an AT28 EEPROM, perform !
  2. operation while doing the right thing. Checks data integrity
  3. and ABORT on mismatch. )
  4. : AT28! ( n a -- )
  5. 2DUP C!
  6. ( as long as writing operation is running, IO/6 will toggle
  7. at each read attempt. We know that write is finished when
  8. we read the same value twice. )
  9. BEGIN ( n1 a )
  10. DUP C@ ( n1 a n2 )
  11. OVER C@ ( n1 a n2 n3 )
  12. = UNTIL
  13. ( We're finished writing. do we have a mismatch? )
  14. C@ = NOT IF ABORT" mismatch" THEN
  15. ;