VOGONS

Common searches


Search results

Display options

Re: Dosbox not detecting custom folder

Yes, -c commands are essentially added to the end of the autoexec commands. Putting the autoexec commands in a batch file and executing that batch with -c after the mount command should work; but remember to CALL a batch file if you intend to do any more -c commands after it.

Re: Does DOSBox support TSRs?

You missed the most important part of calling the original IRQ 0 handler BEFORE the dump process, and adding the recursion flag doesn't really do anything without that. The truth is that writing active TSRs that call DOS functions is actually kind of a pain. DOS itself can be interrupted by an …

Re: Line Wars 2 with S3 acceleration?

https://www.vogons.org/viewtopic.php?f=33&t=27723 A thing to keep in mind is that there are many different brands and models of S3 video card, and there are significant differences between them in hardware and video BIOS. DOSBox nominally emulates S3 Trio 64, but it actually seems to be a bit of a …

Re: Does DOSBox support TSRs?

@ripsaw8080: I am not sure I fully understand what you just wrote. The point is that you should call the original IRQ 0 handler before your memory dumping process, not after, but then you need some simple logic to deal with recursion. Here is an example of the handler code using your style. I have …

Re: Does DOSBox support TSRs?

The most significant problem that I see is calling DOS file functions before IRQ 0 has been acknowledged. No IRQ can occur while IRQ 0 is in service because it has the highest priority. Floppy drive controllers use IRQ 6, some hard drive controllers use IRQ 15, and so trying to write to drives while …

Re: Does DOSBox support TSRs?

IMO, TSRs that react to a key press should hook the keyboard IRQ 1 handler (INT 9) because the interrupt only occurs when there is a key press or release. Using the timer IRQ 0 (INT 8) as you have is inefficient and adds unnecessary processing to the system. Since you're posting in the DOSBox …

Page 1 of 185