User Profile

Collapse

Profile Sidebar

Collapse
haroonob
haroonob
Last Activity: Feb 19 '08, 07:05 AM
Joined: Feb 16 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • haroonob
    started a topic Interrupts and its service numbers
    in C

    Interrupts and its service numbers

    Hello
    Any Can tell me the service numbers for getting following information i have seen Ralf Brown's Interrupt List
    http://www.ctyme.com/rbrown.htm
    but i did not get proper information or don't get proper information with this list

    Processor Information (vendor ,family name,speed etc) , Disks Attached, Floppy Size

    Haroon Idrees
    See more | Go to post

  • haroonob
    replied to making dir or ls command using C interrupts
    in C
    I made a program for getting current directory but it is not working

    #include <stdio.h>
    #include <string.h>
    #include <dir.h>
    #include <dos.h>
    union REGS inregs, outregs;
    void main(){
    inregs.h.ah = 0x47;
    int86(0x21,&inr egs,&outregs);
    printf("%s",out regs.x.si);
    }

    it prints (null)Null pointer assi...
    See more | Go to post

    Leave a comment:


  • haroonob
    replied to making dir or ls command using C interrupts
    in C
    I want to make simple C Program which show current directories and files like dir or ls .This should be use interrupt for getting current directory and its subdirectories and files.Help me to make this program. I Saw 21h interrupt with its service 47h and 4Eh .

    Thanks
    See more | Go to post

    Leave a comment:


  • haroonob
    started a topic making dir or ls command using C interrupts
    in C

    making dir or ls command using C interrupts

    hello
    i have to made a program which show list of folders and files using in interrupt in C language can any buddy help me

    Haroon Idrees
    See more | Go to post
No activity results to display
Show More
Working...