VOGONS

Common searches


Search results

Display options

Re: Stack segment not present

Try something like the following, but be sure to check the disassembly for correctness, and maybe test it in the debugger as well. void outportb(Bit32u portid, Bit8u value) { __asm__ volatile ( "movl %0,%%edx \n" "movb %1,%%al \n" "outb %%al,%%dx " : : "r" (portid), "r" (value) : "edx", "al" ); } …

Re: mouse problem with start disk application

in DOSBox General
Don't know what that /u does, might or might not be enough to fully disable the mouse. In either case try to find older versions of mouse drivers, msmouse worked fine for me (newer msmouse not). If you can compile the dosbox sources you could remove that revectors the mouse interrupts on gfx mode …

Re: GUS sampling interpolation

> Skipping samples without interpolation is evil Yes, but looking at your changes i just wondered why interpolating between [x] and [x+1] would be any better then, as the interval might be larger than 1 (though this might be just wrong, i have no idea how that gus sampling really works).

Re: Stack segment not present

Sorry, didn't look at it yet. But you can browse the dosbox sources, there you'll find asm blocks where you can compare the both assembler types, like this: #if defined (_MSC_VER) __asm { __asm finit __asm fsave dyn_dh_fpu.state[0] __asm fstcw dyn_dh_fpu.host_cw } #else __asm__ volatile ( "finit \n" …

Re: GUS sampling interpolation

Hm i can't hear a difference, though it definitely sounds different when comparing gus sampling against sb sampling (might be correct though). Was using cubic player, and don't have good speakers here, but what midi player did you use?

Re: No Sound

in DOSBox General
Delete your old dosbox.conf, start up dosbox and type "config -writeconf dosbox.conf". That's in the readme btw. dosbox emulates the sound so sound doesn't reach vdmsound anyways (sort of). Saving, well maybe some directory is missing, some files have been left read-only, just be creative.

Page 364 of 445