Subject: Re: Accessing physical memory From: Bryanston School Date: Tue, 04 Jun 1996 21:53:04 +0100 Message-Id: <000000244892916766384@bryanston.co.uk> Organization: Bryanston School To: DJGPP MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit On Sun, Jun 2, 1996, 7:52:15 am GMT Eli Zaretskii wrote: > >On Fri, 31 May 1996, Bryanston School wrote: > >> Is there a way to access physical memory at a specified address without >> using farptrs or Fat DS? > >What's wrong with these two methods? Without knowing what is it that you >are looking for, it is hard to advise you about other ways. > Fat DS: Non-standard, doesn't work under Linux DOSEMU, and isn't portable to Linux. farptrs: I could use these, but I would prefer to just use pointers. I have a PCI video capture board which uses physical memory to store the data - can I just allocate a buffer in memory using malloc(), then map the card into this? Will this work, or will the memory allocated be shuffled around? Thanks, Thomas.