Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

8 行
296B

  1. ( fuse access. read/write one byte at a time )
  2. : aspfl@ ( -- lfuse ) 0 0 0 0x50 _cmd ;
  3. : aspfh@ ( -- hfuse ) 0 0 0x08 0x58 _cmd ;
  4. : aspfe@ ( -- efuse ) 0 0 0x00 0x58 _cmd ;
  5. : aspfl! ( lfuse -- ) 0 0xa0 0xac _cmd ;
  6. : aspfh! ( hfuse -- ) 0 0xa8 0xac _cmd ;
  7. : aspfe! ( efuse -- ) 0 0xa4 0xac _cmd ;