VOGONS

Common searches


Search results

Display options

Re: Opl 3 Sound Bank ?

I'm pretty sure his question is meant the other way. He's looking for a GM sound font that sounds like an OPL3. At least that's how I understand it. No, OP has it right. A sound bank isn't a sound font. Sound font = recordings of instruments. Sound bank = description of how to synthesize …

Re: imgmount

Are there any special reasons to imgmount from a mounted drive instead of host directory? Generally I find it's easier to keep the .iso+.cue in the same dir as the rest of the game's files and use a batch file to mount+run (and do anything else like set core/cycles) in one step. Especially if it's …

Re: DOSBox Feature Request Thread

You couldn't just shove frames down a pipe, you'd need some way to communicate the frame rate/sampling rate, resolution, frame delimiters... once you've done all that you've basically recreated AVI. DOSBox only records audio that goes through its mixer, if you're using an external midi device the …

Re: 64-bit dynamic_x86 (patch)

Would be interested to see some before/after benchmarks for this patch: --- a/src/cpu/core_dyn_x86/risc_x64.h +++ b/src/cpu/core_dyn_x86/risc_x64.h @@ -468,7 +468,11 @@ static void gen_discardflags(void) { } static void gen_needcarry(void) { - gen_needflags(); + if (!x64gen.flagsactive) { + x64gen. …

Re: imgmount

Yes, the same filename shown when you use the DIR command inside DOSBox. (Or just type the first few letters of the filename and press tab to autocomplete it.)

Re: x86 registers for emulating in a cross-platform way?

in PC Emulation
I consider that confusing and obsfucated. Just use and and stick to uint16_t / int16_t etc. Completely agree, they are the "standard" types for a reason. when you talk about a byte or (double)word value, everyone that knows software knows what you're talking about, don't they? No. Is a "byte" …

Re: x86 registers for emulating in a cross-platform way?

in PC Emulation
C guarantees the alignment of a type matches its size (at least for sizes up to the platform's natural word size). If you have a struct that has a uint16_t member followed by a uint32_t, padding is required to align the latter. The alignment of the struct overall will also be equal to the alignment …

Re: Benchmarking DOSBox on latest machines

in PC Emulation
Kerr Avon wrote: Have we reached the point yet where DOSBox, running on the most powerful PCs available to the public, can emulate games faster than they can run in real DOS on any machines? Not even close. Real DOS on a real P3 (maybe even P2) will outperform any machine running DOSBox.

Page 50 of 66