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

  1. : FD@
  2. 2 * 16 + ( blkfs starts at sector 16 )
  3. 0x0201 BLK( 2 PICK _
  4. 0x0201 BLK( 0x200 + ROT 1+ _ ;
  5. : FD!
  6. 2 * 16 + ( blkfs starts at sector 16 )
  7. 0x0301 BLK( 2 PICK _
  8. 0x0301 BLK( 0x200 + ROT 1+ _ ;
  9. : FD$
  10. ( get number of sectors per track with command 08H. )
  11. 0x03 ( boot drive ) C@ 13H08H
  12. 8 RSHIFT 1+ FDHEADS C!
  13. 0x3f AND FDSPT C!
  14. ;