Skip to main content

Questions tagged [dos-com]

COM files are headerless 16-bit executable files which were used in CP/M, PC-DOS, and MS-DOS. The files also run under 32-bit versions of Windows via NTVDM or in emulation software such as DosBox or DOSEMU.. For Component Object Model, use the tag "com" instead.

2 votes
1 answer
1k views

I have some assembly code as a .txt file (i.e. a list of the instructions, stuff like this): 00000003 E8D001 call 0x1d6 00000006 A08000 mov al,[0x80] 00000009 0C00 ...
Zopolis4's user avatar
1 vote
0 answers
319 views

I have a dos file/database(decades old) that I need to extract into MS Excel or My SQL. I am using a MacBook. The file appears to have no extension. The file type I can see when I do "get info&...
Sushant Khanal's user avatar
0 votes
1 answer
83 views

Background Since some time we've been in the possession of a greenhouse. It was build around 1990 and had an automated system for climate control. However most of the installation has been removed ...
Bjorn De Rijcke's user avatar
2 votes
1 answer
252 views

I've got an hexdump of COM MSDOS 8086 file, and I'm trying to transform it to COM executable. After looking around, I found a site1 that gives reasonable disassembly of the hexdump. Although, when I ...
user1387682's user avatar
10 votes
2 answers
6k views

I'm trying to analyze a MS-DOS COM file that I wrote a few years ago with IDA Free 5.0, I've since renamed the segment to code_and_data and named constants and set data types correctly. However, when ...
Thomas Perl's user avatar
0 votes
1 answer
301 views

I'm having issue reversing a small old COM file from the early 90s. My understanding was that code begins at 0x100, however the one I have seems to begin at 0x90 (0s before). However some of the ...
youcantexplainthat's user avatar
16 votes
6 answers
15k views

I've found a binary copy of a DOS freeware game I was fond of back in the day (Firefighter, downloadable as FIRE.COM) but the source code is not available. I'd like to re-implement it in C or Python ...
ESR's user avatar
  • 161
5 votes
1 answer
652 views

When debugging the following com file in MS-DOS, I can successfully run the program with -g and it terminates normally, but when I trace it -t 1000, the program throws an illegal operation exception ...
Johnny Cache's user avatar
8 votes
3 answers
1k views

What can I do to reverse engineer a DOS .COM file? As far as debugging goes, I've looked DEBUG and DEBUGX from the creators of FreeDOS, as well as the default DEBUG command that comes with Windows. ...
JMcAfreak's user avatar
  • 862