www.delorie.com/djgpp/doc/libc-2.01/libc_159.html   search  
Go to the first, previous, next, last section, table of contents.


dosmemputl

Syntax

#include <sys/movedata.h>

void _dosmemputl(const void *buffer, size_t xfers unsigned long offset);

Description

This function transfers data from the program's virtual address space to MS-DOS's conventional memory space, using only long-word (32-bit) transfers. The offset is a physical address, which can be computed from a real-mode segment/offset pair as follows:

offset = segment * 16 + offset;

The xfers is the number of long-words to transfer, and buffer is a pointer to somewhere in your virtual address space (such as memory obtained from malloc) where the data will come from.

Return Value

None.

Example

unsigned short save_screen[25][80];
dosmemputl(save_screen, 0xb8000, 40*25);


Go to the first, previous, next, last section, table of contents.

  prev next   webmaster     delorie software   privacy  
  Copyright © 1997     Updated Apr 1997