On Fri, 12 Feb 1999, Mark Lehrer wrote:

> I have a DOS device driver with no Linux equivalent - it is a voice
> processing card from Dialogic.
> 
> Is it possible to load their DOS driver from within DOSEMU so I can run
> a legacy voice mail system?  It will need access to direct memory and an
> interrupt.

No promisses, I don't even know this card, but it _may_ work:

in /etc/dosemu/conf:

  $_irqpassing = "10"
  $_hardware_ram = "range 0xd0000 0xd3fff"

would pass IRQ10 to dosemu and opens a hardware door to share ram
locations D000:0 to D3FF:0 (if that is what your driver needs).

You also may need to give port access (fast one) to the ports your card
need:

  $_ports = "fast range 0x280 0x28f"

Note that the above is an example for a DOS driver running a WD8013
ethernet card, you should adapt it to your needs, and if you give wrong
values, you may lock your machine. Be warned!

Hans
<[EMAIL PROTECTED]>

Reply via email to