| r8648 Wednesday 28th July, 2010 at 03:02:09 UTC by Dirk Best |
|---|
| [TF20] Successfully boots from floppy now. [UPD765] Disabled reporting of drive side in the sense interrupt command. |
| [src/mess/machine] | tf20.c upd765.c |
| r8647 | r8648 | |
|---|---|---|
| 328 | 328 | fdc->upd765_status[0] |= 0x40 | 0x08; |
| 329 | 329 | } |
| 330 | 330 | |
| 331 | /* set drive and side */ | |
| 332 | fdc->upd765_status[0] |= fdc->drive | (fdc->side<<2); | |
| 331 | /* set drive and side. note: commented out side to avoid problems with the tf20 */ | |
| 332 | fdc->upd765_status[0] |= fdc->drive; //| (fdc->side<<2); | |
| 333 | 333 | |
| 334 | 334 | upd765_set_int(device,0); |
| 335 | 335 | upd765_set_int(device,1); |
| r8647 | r8648 | |
|---|---|---|
| 4 | 4 | |
| 5 | 5 | Dual floppy drive with HX-20 factory option |
| 6 | 6 | |
| 7 | Skeleton driver, not working | |
| 8 | 7 | |
| 8 | Status: Boots from system disk, missing µPD7201 emulation | |
| 9 | ||
| 9 | 10 | ***************************************************************************/ |
| 10 | 11 | |
| 11 | 12 | #include "emu.h" |
| r8647 | r8648 | |
| 282 | 283 | DEVCB_NULL, |
| 283 | 284 | DEVCB_NULL, |
| 284 | 285 | DEVCB_NULL, |
| 285 | FLOPPY_STANDARD_5_25_DS | |
| 286 | FLOPPY_STANDARD_5_25_DS | |
| 286 | 287 | FLOPPY_OPTIONS_NAME(default), |
| 287 | 288 | NULL |
| 288 | 289 | }; |
| Previous 50 | 9070 Revisions | Next 50 |