Eke-Eke wrote:
.md roms (like .gen ones) are just plain .BIN roms so you just need to add extension support, there is nothing special about them, it's just that some people decided that .bin was not clear enough to designate genesis/megadrive .
cart.txt wrote:
Multi Game Doctor file-format (.MD):
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The MD file format also doesn't have a header. The interleaving it uses
is equal to the SMD, but without the division in blocks! (Even bytes in
the end of file, odd bytes in the beginning).
THE DECODING A MD (how to convert a MD to a BIN):
1) Get middlepoint (size of rom/2)
2) Get a byte from the ROM
3) If the byte position is equal or smaller than the middlepoint put the
byte in byte position*2 of the destination buffer
4) If the byte position is greater than the middlepoint, put the byte in
(byte position*2) - size of rom -1
Yes well the problem is they chose .MD which is used by an existing format (at least according to that document).