Thread: Memory-Resident programs and Sys files

  1. #1
    Registered User
    Join Date
    Jun 2002
    Posts
    44

    Question Memory-Resident programs and Sys files

    Ho do you make valid .Sys files?I mean,what are they, compiled assembler?And how do you get them to do things that only Sys files can?Also,how do you make memory resident programs?
    ego sum via et veritas et vitae -Jesus Christ

  2. #2
    Banned master5001's Avatar
    Join Date
    Aug 2001
    Location
    Visalia, CA, USA
    Posts
    3,685
    Well I io.sys has an MZ header. I also know that config.sys is a text file, and logow.sys is a bitmap. So to make a valid sys file why not take some file and change its extension to .sys? Okay, I know that doesn't help but as far as I know there isn't a certain format for a sys file.
    I mean,what are they, compiled assembler?
    That is what all programs are. Higher level languages such as C, C++, and PASCAL have compilers that generate the assembler code for you. On to your last question, you use your compiler. As far as I know there is a protocol for memory resident programs but other than whatever API or library they use they are nothing special.

  3. #3
    Registered User
    Join Date
    Jun 2002
    Posts
    44
    thanks master,but isnt logow and config.sys just exceptions to the rule that the system looks for?
    ego sum via et veritas et vitae -Jesus Christ

  4. #4
    Registered User VBprogrammer's Avatar
    Join Date
    Mar 2002
    Posts
    175
    Naw..Master5001 is right there is not specific format for a .sys file they are all exeptions to the rule (as you put it) some code has to read the file and do what it wants with it.
    VC++ 6

  5. #5
    Banned master5001's Avatar
    Join Date
    Aug 2001
    Location
    Visalia, CA, USA
    Posts
    3,685
    What are you trying to so with a sys file. Maybe we can work backwards through your problem. Are you trying to make something that generates sys files or are you trying to make a sys file to accomplish some task?

  6. #6
    Registered User VBprogrammer's Avatar
    Join Date
    Mar 2002
    Posts
    175
    Going by the title "Memory-Resident programs..." I guess he wants to make a TSR program. This is usually acomplished by editing an interupt vector so that you are effectivily stealling time from that interupt. What you do is redirect the interupt vector storing the old interupt vector then at the end of your code you send the processor back to the actually Interupt service routine.
    VC++ 6

  7. #7
    Registered User
    Join Date
    Sep 2002
    Posts
    2
    Dos sys is a pure binary program (com extension, not MZ) only instead of running at the normal location it runs at another. I forgot the exact location for sys, Its 0100 for a com. Sys I forgot, have the info somwhere around here. If u ever used debug to write assembly programs u would know what im talking about. I may be wrong but I remember reading this a long while ago in a assembly doc. Im sure about the location that a com starts up.

Popular pages Recent additions subscribe to a feed