Results 1 to 5 of 5

Thread: Int 24

  1. #1
    anoop007
    Guest

    Int 24

    I don't know much assembly.. here are
    some questions..

    What are these INT 24 errors that I get
    while i access bad floppies?

    How do TSRs work?

  2. #2
    ChimpFace9000
    Guest
    Write the errors that you get.

  3. #3
    anoop007
    Guest
    I don't remember but I think it was
    Fail on INT 24

  4. #4
    ChimpFace9000
    Guest
    Code:
                           INT 24 - Critical Error Handler
    
           no input data
    
           on entry to INT 24:
           AH = bit 7 of register AH is set to one if other than disk error
              = bit 7 of register AH is set to zero if disk error
                AL = failing drive number
                AH = bits 0-2 indicate affected disk area and read/write status
    
                     ¦5¦4¦3¦2¦1¦0¦  AH
                      ¦ ¦ ¦ ¦ ¦ +---- read = 0, write = 1
                      ¦ ¦ ¦ +------- 00=DOS, 01=FAT, 10=DIR, 11=data area
                      ¦ ¦ +-------- 0=FAIL not allowed, 1=FAIL allowed
                      ¦ +--------- 0=RETRY not allowed, 1=RETRY allowed
                      +---------- 0=IGNORE not allowed, 1=IGNORE allowed
    
           DI = error code in lower byte
           BP:SI = pointer to device header control block where additional
                   information about the error can be found

  5. #5
    anoop007
    Guest
    Thanks.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width