VOGONS

Common searches


Search results

Display options

Re: Hardware Bypass

I guess you're asking about native execution, which is possible (to some extent) on a compatible host CPU. Look up info on QEMU+KQEMU or VirtualBox for examples of virtualizers that allow partial native execution with fallback to emulation. Perhaps DOSBox could do something similar, but it certainly …

Re: DOS box not seeing clock

DOSBox supports most timing methods used by DOS apps, with the notable exception that it does not allow setting the time via INT 21/2D; however, the timer ticks in BIOS memory can be changed directly. There are probably many reasons the app might not work right (DOSBox is intended for games), but if …

Debugger disassembly error

I was debugging a program and ran into an instruction that disassembles as "movsx eax,ax", but "movsx eax,al" is executed; which had me thinking there was a CPU bug for a moment. The opcode is 0F BE C0 with a disassembly template of "movsx %Gv,%Eb". The second operand is byte size in the template, …

Re: Strange Mystery Files?

Executables, including DLLs, will usually have *some* readable text in their headers or library dependencies, even if they are compressed with UPX or some such. Do they at least start with the (in)famous "MZ" executable signature? If not, then they are data files masquerading as executables, and …

Re: Text appearance problem with a game

http://www.vogons.org/viewtopic.php?t=21918 It seems to be a regression, but the history is a bit more complicated than that. If you read the linked thread, the issue relates to how character data is rotated. In 0.63 rotation was applied to all write modes, so the game appeared to work OK, but the …

Re: Disk Serial

in DOS
Based on the output from VOL in MSDOS 5, it's a bit tricky to get it perfect using ECHO commands in the batch file, because you have little control over newline characters. I made a mock up that looks correct using two files, attached to this post in a zip file. The volume label in the output is the …

Re: Disk Serial

in DOS
As I explained in your other thread on this subject, the volume serial number of mounted drives in DOSBox is 0000-1234. However, most apps should be able to determine this information through DOS function calls, so you must have an app that doesn't do that for some reason. When you say the app uses …

Page 159 of 185