Search:

Type: Posts; User: modest

Search: Search took 0.00 seconds.

  1. Replies
    15
    Views
    15,745

    DOS.

    DOS.
  2. Replies
    15
    Views
    15,745

    here is my program that I am using to write to...

    here is my program that I am using to write to address location e000h


    //The essentials
    #include <stdio.h>
    #include <stdlib.h>

    #define ADDR 0xe0000
  3. Replies
    15
    Views
    15,745

    Guys thank you very much for all the advice and...

    Guys thank you very much for all the advice and help. It seems that my program is not writing to the desired location (e000h) I verified this with DOS "debug" utility. How can I debug my program?
  4. Replies
    15
    Views
    15,745

    Thanks dwks! Also I noticed that you mentioned...

    Thanks dwks!

    Also I noticed that you mentioned to modify the for loop as:


    for(memoffset=0x0;memoffset<0x8;memoffset++)


    instead of:
  5. Replies
    15
    Views
    15,745

    Thanks for your persistence. Here is the code...

    Thanks for your persistence.

    Here is the code that I have written. Although it compiles fine and runs I am not sure if I wrote it correctly to do as I want it to do. A quick review will be really...
  6. Replies
    15
    Views
    15,745

    Thanks for the info. I am in a situation where I...

    Thanks for the info. I am in a situation where I have to run a program like this.

    Also what if I have to write at 4 consequetive memory locations (say e000h,e0002h, e0004h, e0008h) with the data...
  7. Replies
    15
    Views
    15,745

    Program to write to memory map addresses

    I am trying to write a very simple C program in which I am trying to write to the memory on my computer in DOS. This is what I am trying to do.

    Say I have the data stored as:


    short...
Results 1 to 7 of 7