Subject: How do I dissassemble Intel 8086 binaries?
Date: 07/13/99

Under BSD/OS 4.0.1 (maybe other versions too) you can dump an object file in 16 bit mode using the objdump command:

The trick is to get your data into some format that objdump can read. The easiest way to do this is to prepend an a.out header. Assuming you have a file with pure 8086 instructions (like bootany.sys), you can use the following program to prepend an a.out header:

The header the the file are both output to standard out.

So, the steps are: