VOGONS

Common searches


Search results

Display options

Re: DOSBox takes extra CPU time to draw the screen

The bottleneck is that there is nothing to be transferred anywhere. Dosbox emulates the chip itself. It does not (can not / must not) program your real video hardware, apart from asking for a frame buffer at a given resolution. The rest, like scan line updates, palette setting, timing registers, how …

Re: Choice command

By the way, if you want to contribute you are welcome to summarize your newly learned wisdom in the DosBox Wiki. That way other users can benefit as well 😉

Re: Choice command

Okay, you've pointed me to a small incompatibility to real DOS choice: in DOS, it would display [12345..], the actual choices. I've hardcoded that Y/N thingy in dosbox. You can put your own prompt on the choice line like this: choice /c:1234 /n Please choose one: those "echo is off" messages are …

Re: SVGA choice

Just to answer your question: IMHO yes. S3 is a good foundation for future development (win 3.1 runs in 256 colours), seems to be easy enough to emulate, and is widely known from the mid-90s on. About that text problem: Try looking at src/ints/int10_put_pixel.cpp, INT10_PutPixel. It doesn't yet have …

Re: Thanks DOSBox (running oldskool PC demos)

There's nothing to emulate for "assembly 3d graphics". From the emulators point of view, "assembly 3d graphics" is like "assembly sprite drawing" or "assembly waiting for user input". What demos usually do, and what drives emulators insane, is to modify their own code. That's a neat trick on those …

Re: "noems" to "ram" + .bat commands support?

I must admit, I don't entirely get what you want, but batch files work, the "type" command works, dosbox.conf has a section called "autoexec" - now guess what it does. To access batch files from everywhere, you need to set PATH as it was in original DOS. The only important difference to real DOS is …

Re: path problem

Read the documentation (most importantly: the README), then use your newly aquired knowledge, and if it still fails, give us details on what you tried to get it woking.

Re: Screen Problems

Wild Guess: Monitor adjustmen neccessary. Try the settings your display offers, h-/v-size, pincushion and trapez correction and that stuff. If the picture is almost the expected size, but distorted and pushed up a bit, that may help. It may be a totally different problem, however.

Re: CVS compile question(s)

It should work, especially for MSYS. They don't do that fancy path translating like cygwin does. Though I faintly recall there was a way to get unix-path behaviour for an app if you want it. Anyways, try it, I guess it simply works. And then send me a quick guide for compiling CVS with MSYS so I can …

Re: Switching CD images in a game

I don't know if it works, but try mounting the second CD in the same dir as the first CD (just like you described), then press Ctrl-F4. That may or may not tell dosbox to check for new files, it depends a bit on how exactly dosbox accesses the files, never tried it. Please tell me if it works 😉

Re: Running DOSBOX in XP using 24-Bit?

In the context of most frame buffers, 32bpp is 24bpp plus padding. Using the extra 8 bit as alpha channel is something done for, say, PNG images or OpenGL textures, but (usually) not for application windows. The extra 8 bit go unused most of the time, but they are faster to use, as the CPU can …

Page 46 of 52