(MESS) tiki100: Added floppy sector skew and fixed PSG output mode. (nw)

This commit is contained in:
Curt Coder 2012-12-13 20:05:01 +00:00
parent e84351c68b
commit 8bdde8be64
2 changed files with 4 additions and 5 deletions

View File

@ -62,7 +62,6 @@ const char *tiki100_format::extensions() const
}
// Unverified gap sizes
// physical disks have 2:1 sector interleave
// double sided disks have t0s0,t0s1,t1s0,t1s1... format
const tiki100_format::format tiki100_format::formats[] = {
{ // 90K 5 1/4 inch single density single sided
@ -71,15 +70,15 @@ const tiki100_format::format tiki100_format::formats[] = {
},
{ // 200K 5 1/4 inch double density single sided
floppy_image::FF_525, floppy_image::SSDD,
2000, 10, 40, 1, 512, {}, 1, {}, 80, 22, 20
2000, 10, 40, 1, 512, {}, -1, { 1,6,2,7,3,8,4,9,5,10 }, 80, 22, 20
},
{ // 400K 5 1/4 inch double density
floppy_image::FF_525, floppy_image::DSDD,
2000, 10, 40, 2, 512, {}, 1, {}, 80, 22, 20
2000, 10, 40, 2, 512, {}, -1, { 1,6,2,7,3,8,4,9,5,10 }, 80, 22, 20
},
{ // 800K 5 1/4 inch quad density
floppy_image::FF_525, floppy_image::DSQD,
2000, 10, 80, 2, 512, {}, 1, {}, 80, 22, 20
2000, 10, 80, 2, 512, {}, -1, { 1,6,2,7,3,8,4,9,5,10 }, 80, 22, 20
},
{}
};

View File

@ -524,7 +524,7 @@ WRITE8_MEMBER( tiki100_state::video_scroll_w )
static const ay8910_interface ay8910_intf =
{
AY8910_LEGACY_OUTPUT,
AY8910_SINGLE_OUTPUT,
AY8910_DEFAULT_LOADS,
DEVCB_NULL,
DEVCB_NULL,