diff options
author | 2015-07-20 08:11:41 +0200 | |
---|---|---|
committer | 2015-07-20 08:11:41 +0200 | |
commit | 4bcb0c13f50ddb1cd3fd0341b4bb31d9c3c7fc7a (patch) | |
tree | 55eccacfca0e69435d0d4e6615205310ca11f271 /src/lib/formats/flopimg.c | |
parent | d132946c6f45aa8d271c6180e86f72dd08243048 (diff) | |
parent | 229785f695b26c702c8490792611f59d0366a933 (diff) |
Merge pull request #5 from mamedev/master
Sync to base master
Diffstat (limited to 'src/lib/formats/flopimg.c')
-rw-r--r-- | src/lib/formats/flopimg.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/formats/flopimg.c b/src/lib/formats/flopimg.c index 510f7d8c2d4..e2ee5122b2c 100644 --- a/src/lib/formats/flopimg.c +++ b/src/lib/formats/flopimg.c @@ -2563,8 +2563,9 @@ void floppy_image_format_t::extract_sectors_from_bitstream_fm_pc(const UINT8 *bi if(idblk_count < 100) idblk[idblk_count++] = i+1; } - // fb - if(shift_reg == 0xf56f) { // data mark + // f8, f9, fa, fb + if(shift_reg == 0xf56a || shift_reg == 0xf56b || + shift_reg == 0xf56e || shift_reg == 0xf56f) { // data mark if(dblk_count < 100) dblk[dblk_count++] = i+1; } |