1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-01-26 04:01:07 +00:00

Small tweaks to display controller in low-res mode; added support for Diablo 44 disks, added ST-76 on Diablo 44.

This commit is contained in:
Josh Dersch
2016-03-16 17:07:57 -07:00
parent dc0a85aed8
commit 2c99250ded
14 changed files with 229 additions and 50 deletions

View File

@@ -392,10 +392,10 @@ namespace Contralto.IO
private void InitSeek(int destCylinder)
{
// set "seek fail" bit based on selected cylinder (if out of bounds) and do not
// commence a seek if so.
// TODO: handle Model-44 cylinder count (and packs, for that matter)
if (destCylinder > 202)
//
// Set "seek fail" bit based on selected cylinder (if out of bounds) and do not
// commence a seek if so.
if (destCylinder > SelectedDrive.Pack.Geometry.Cylinders - 1)
{
_kStat |= SEEKFAIL;