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.

7 lines
238B

  1. : aspe@ ( addr -- byte, read from EEPROM )
  2. 0 SWAP 256 /MOD ( 0 lsb msb ) SWAP
  3. 0xa0 ( 0 msb lsb 0xa0 ) _cmd ;
  4. : aspe! ( byte addr --, write to EEPROM )
  5. 256 /MOD ( b lsb msb ) SWAP
  6. 0xc0 ( b msb lsb 0xc0 ) _cmd DROP asprdy ;