VOGONS

Common searches


Search results

Display options

Re: What's in a name? You say tomato, I say ...

Leolo wrote: EDIT: It seems that you can also use that command on FAT32 drives. I haven't personally tested it, though. I don't think this works. The FAT32 file system requires the SFN entries to store the usual file info (starting cluster, file size, attributes, ...), not just the short name.

Re: Using HX Extender to emulate more games

BTW, I can't use hxldr32.exe because the documentation says it doesn't work with DOSBox: HXLDR32 isn't compatible with DosBox. This is due to a bug in DosBox's emulation of DOS int 21h, ax=4B01h. Boot a floppy image with DOS inside DOSBox instead of using the Int21 emulation. Then at least HXLDR32 …

"VER" / "VER SET" strange version display

Hello, The DOSBox shell's VER command displays both the major and minor DOS version as decimal number without leading zeros. This could cause confusion because the command "VER SET 6 2" doesn't set the version to 6.20 as one might expect but instead to 6.02. The problem here is that, using only "VER …

Minor AvailDev/SwitChar difference

Hello, This code is found inside dos.cpp: case 0x37: /* Get/Set Switch char Get/Set Availdev thing */ switch (reg_al) { case 0: reg_al=0;reg_dl=0x2f;break; /* always return '/' like dos 5.0+ */ case 1: reg_al=0;break; case 2: reg_al=0;reg_dl=0x2f;break; case 3: reg_al=0;break; }; LOG(LOG_MISC,LOG_ …

Re: DOSBox exits on "Illegal calls"

Doubt any game uses that. Why is that function called with 0xff anyways? Is that freedos specific? (drdos had something there iirc) It's actually the FreeDOS or DOS-C (the FreeDOS kernel) "Get ASCIIZ version string" service, not available for other DOS and a working installation check for FreeDOS. …

DOSBox exits on "Illegal calls"

Hello, Testing some of my DOS software, I noticed one program that called the DOS-C/FreeDOS service Interrupt 21.33FF always hanging the Box. (Without "boot"ing some different OS into the Box.) Looking into the stderr.txt and the dos.cpp source file I now know that the Box terminates on unknown …

Re: How to detect if running in DOSBox

Type in "ver" for programs run in DosBox. What about someone running another COMMAND.COM inside DOSBox? It would return it's version on "ver", not the DOSBox version. get vesa mode information it contains some words about dosbox Indeed this helps, thanks. Using Interrupt 10.4F00, one can get DOSBox …

How to detect if running in DOSBox

Hello, I'm a Assembler programmer writing some small DOS software (just for fun). I would like to know if there's any way to detect if I'm running in DOSBox. Recently I viewed the 0.72 source (I'm able to read and understand most C code) but didn't find anything like this yet. Best would be if the …

Page 1 of 1