1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
|
/* beta.c: Routines for handling the Beta disk interface
Copyright (c) 2004-2011 Stuart Brady, Philip Kendall
$Id: beta.c 4926 2013-05-05 07:58:18Z sbaldovi $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
Philip: philip-fuse@shadowmagic.org.uk
Stuart: stuart.brady@gmail.com
*/
#include <config.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#ifdef HAVE_STRINGS_H
#include <strings.h> /* Needed for strncasecmp() on QNX6 */
#endif /* #ifdef HAVE_STRINGS_H */
#include <limits.h>
#include <sys/stat.h>
#include <libspectrum.h>
#include "beta.h"
#include "compat.h"
#include "event.h"
#include "machine.h"
#include "module.h"
#include "settings.h"
#include "ui/ui.h"
#include "unittests/unittests.h"
#include "utils.h"
#include "wd_fdc.h"
#include "z80/z80.h"
#include "z80/z80_macros.h"
#include "options.h" /* needed for get combo options */
#define DISK_TRY_MERGE(heads) ( option_enumerate_diskoptions_disk_try_merge() == 2 || \
( option_enumerate_diskoptions_disk_try_merge() == 1 && heads == 1 ) )
/* A 16KB memory chunk accessible by the Z80 when /ROMCS is low */
memory_page beta_memory_map_romcs[MEMORY_PAGES_IN_16K];
static int beta_memory_source;
int beta_available = 0;
int beta_active = 0;
int beta_builtin = 0;
static libspectrum_byte beta_system_register; /* FDC system register */
libspectrum_word beta_pc_mask;
libspectrum_word beta_pc_value;
static int beta_index_pulse = 0;
static int index_event;
#define BETA_NUM_DRIVES 4
static wd_fdc *beta_fdc;
static wd_fdc_drive beta_drives[ BETA_NUM_DRIVES ];
static const periph_port_t beta_ports[] = {
{ 0x00ff, 0x001f, beta_sr_read, beta_cr_write },
{ 0x00ff, 0x003f, beta_tr_read, beta_tr_write },
{ 0x00ff, 0x005f, beta_sec_read, beta_sec_write },
{ 0x00ff, 0x007f, beta_dr_read, beta_dr_write },
{ 0x00ff, 0x00ff, beta_sp_read, beta_sp_write },
{ 0, 0, NULL, NULL }
};
static const periph_t beta_peripheral = {
&settings_current.beta128,
beta_ports,
1,
NULL
};
static void beta_reset( int hard_reset );
static void beta_memory_map( void );
static void beta_enabled_snapshot( libspectrum_snap *snap );
static void beta_from_snapshot( libspectrum_snap *snap );
static void beta_to_snapshot( libspectrum_snap *snap );
static void beta_event_index( libspectrum_dword last_tstates, int type,
void *user_data );
static module_info_t beta_module_info = {
beta_reset,
beta_memory_map,
beta_enabled_snapshot,
beta_from_snapshot,
beta_to_snapshot,
};
void
beta_page( void )
{
beta_active = 1;
machine_current->ram.romcs = 1;
machine_current->memory_map();
}
void
beta_unpage( void )
{
beta_active = 0;
machine_current->ram.romcs = 0;
machine_current->memory_map();
}
static void
beta_memory_map( void )
{
if( !beta_active ) return;
memory_map_romcs( beta_memory_map_romcs );
}
static void
beta_select_drive( int i )
{
if( beta_fdc->current_drive != &beta_drives[ i & 0x03 ] ) {
if( beta_fdc->current_drive != NULL )
fdd_select( &beta_fdc->current_drive->fdd, 0 );
beta_fdc->current_drive = &beta_drives[ i & 0x03 ];
fdd_select( &beta_fdc->current_drive->fdd, 1 );
}
}
void
beta_init( void )
{
int i;
wd_fdc_drive *d;
beta_fdc = wd_fdc_alloc_fdc( FD1793, 0, WD_FLAG_BETA128 );
beta_fdc->current_drive = NULL;
for( i = 0; i < BETA_NUM_DRIVES; i++ ) {
d = &beta_drives[ i ];
fdd_init( &d->fdd, FDD_SHUGART, NULL, 0 ); /* drive geometry 'autodetect' */
d->disk.flag = DISK_FLAG_NONE;
}
beta_select_drive( 0 );
beta_fdc->dden = 1;
beta_fdc->set_intrq = NULL;
beta_fdc->reset_intrq = NULL;
beta_fdc->set_datarq = NULL;
beta_fdc->reset_datarq = NULL;
index_event = event_register( beta_event_index, "Beta disk index" );
module_register( &beta_module_info );
beta_memory_source = memory_source_register( "Betadisk" );
for( i = 0; i < MEMORY_PAGES_IN_16K; i++ )
beta_memory_map_romcs[i].source = beta_memory_source;
periph_register( PERIPH_TYPE_BETA128, &beta_peripheral );
}
static void
beta_reset( int hard_reset GCC_UNUSED )
{
int i;
wd_fdc_drive *d;
const fdd_params_t *dt;
event_remove_type( index_event );
if( !(periph_is_active( PERIPH_TYPE_BETA128 ) ||
periph_is_active( PERIPH_TYPE_BETA128_PENTAGON ) ||
periph_is_active( PERIPH_TYPE_BETA128_PENTAGON_LATE )) ) {
beta_active = 0;
beta_available = 0;
return;
}
beta_available = 1;
beta_pc_mask = 0xff00;
beta_pc_value = 0x3d00;
wd_fdc_master_reset( beta_fdc );
for( i = 0; i < BETA_NUM_DRIVES; i++ ) {
d = &beta_drives[ i ];
d->index_pulse = 0;
d->index_interrupt = 0;
}
if( !beta_builtin ) {
if( machine_load_rom_bank( beta_memory_map_romcs, 0,
settings_current.rom_beta128,
settings_default.rom_beta128, 0x4000 ) ) {
beta_active = 0;
beta_available = 0;
periph_activate_type( PERIPH_TYPE_BETA128, 0 );
settings_current.beta128 = 0;
return;
}
beta_active = 0;
if( !( machine_current->capabilities &
LIBSPECTRUM_MACHINE_CAPABILITY_128_MEMORY ) ) {
beta_pc_mask = 0xfe00;
beta_pc_value = 0x3c00;
/* For 48K type machines, the Beta 128 is supposed to be configured
to start with the Beta ROM paged in (System switch in centre position)
but we also allow the settion where the Beta does not auto-boot (System
switch is in the off position 3)
*/
if ( settings_current.beta128_48boot )
beta_page();
}
}
/* We can eject disks only if they are currently present */
dt = &fdd_params[ option_enumerate_diskoptions_drive_beta128a_type() + 1 ]; /* +1 => there is no `Disabled' */
fdd_init( &beta_drives[ BETA_DRIVE_A ].fdd, FDD_SHUGART, dt, 1 );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_A, dt->enabled );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_A_EJECT,
beta_drives[ BETA_DRIVE_A ].fdd.loaded );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_A_FLIP_SET,
!beta_drives[ BETA_DRIVE_A ].fdd.upsidedown );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_A_WP_SET,
!beta_drives[ BETA_DRIVE_A ].fdd.wrprot );
dt = &fdd_params[ option_enumerate_diskoptions_drive_beta128b_type() ];
fdd_init( &beta_drives[ BETA_DRIVE_B ].fdd, dt->enabled ? FDD_SHUGART : FDD_TYPE_NONE, dt, 1 );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_B, dt->enabled );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_B_FLIP_SET,
!beta_drives[ BETA_DRIVE_B ].fdd.upsidedown );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_B_EJECT,
beta_drives[ BETA_DRIVE_B ].fdd.loaded );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_B_WP_SET,
!beta_drives[ BETA_DRIVE_B ].fdd.wrprot );
dt = &fdd_params[ option_enumerate_diskoptions_drive_beta128c_type() ];
fdd_init( &beta_drives[ BETA_DRIVE_C ].fdd, dt->enabled ? FDD_SHUGART : FDD_TYPE_NONE, dt, 1 );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_C, dt->enabled );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_C_FLIP_SET,
!beta_drives[ BETA_DRIVE_C ].fdd.upsidedown );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_C_EJECT,
beta_drives[ BETA_DRIVE_C ].fdd.loaded );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_C_WP_SET,
!beta_drives[ BETA_DRIVE_C ].fdd.wrprot );
dt = &fdd_params[ option_enumerate_diskoptions_drive_beta128d_type() ];
fdd_init( &beta_drives[ BETA_DRIVE_D ].fdd, dt->enabled ? FDD_SHUGART : FDD_TYPE_NONE, dt, 1 );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_D, dt->enabled );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_D_FLIP_SET,
!beta_drives[ BETA_DRIVE_D ].fdd.upsidedown );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_D_EJECT,
beta_drives[ BETA_DRIVE_D ].fdd.loaded );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_D_WP_SET,
!beta_drives[ BETA_DRIVE_D ].fdd.wrprot );
beta_select_drive( 0 );
machine_current->memory_map();
beta_event_index( 0, 0, NULL );
ui_statusbar_update( UI_STATUSBAR_ITEM_DISK, UI_STATUSBAR_STATE_INACTIVE );
}
void
beta_end( void )
{
beta_available = 0;
free( beta_fdc );
}
libspectrum_byte
beta_sr_read( libspectrum_word port GCC_UNUSED, int *attached )
{
if( !beta_active ) return 0xff;
*attached = 1;
return wd_fdc_sr_read( beta_fdc );
}
void
beta_cr_write( libspectrum_word port GCC_UNUSED, libspectrum_byte b )
{
if( !beta_active ) return;
wd_fdc_cr_write( beta_fdc, b );
}
libspectrum_byte
beta_tr_read( libspectrum_word port GCC_UNUSED, int *attached )
{
if( !beta_active ) return 0xff;
*attached = 1;
return wd_fdc_tr_read( beta_fdc );
}
void
beta_tr_write( libspectrum_word port GCC_UNUSED, libspectrum_byte b )
{
if( !beta_active ) return;
wd_fdc_tr_write( beta_fdc, b );
}
libspectrum_byte
beta_sec_read( libspectrum_word port GCC_UNUSED, int *attached )
{
if( !beta_active ) return 0xff;
*attached = 1;
return wd_fdc_sec_read( beta_fdc );
}
void
beta_sec_write( libspectrum_word port GCC_UNUSED, libspectrum_byte b )
{
if( !beta_active ) return;
wd_fdc_sec_write( beta_fdc, b );
}
libspectrum_byte
beta_dr_read( libspectrum_word port GCC_UNUSED, int *attached )
{
if( !beta_active ) return 0xff;
*attached = 1;
return wd_fdc_dr_read( beta_fdc );
}
void
beta_dr_write( libspectrum_word port GCC_UNUSED, libspectrum_byte b )
{
if( !beta_active ) return;
wd_fdc_dr_write( beta_fdc, b );
}
void
beta_sp_write( libspectrum_word port GCC_UNUSED, libspectrum_byte b )
{
if( !beta_active ) return;
/* reset 0x04 and then set it to reset controller */
beta_select_drive( b & 0x03 );
/* 0x08 = block hlt, normally set */
wd_fdc_set_hlt( beta_fdc, ( ( b & 0x08 ) ? 1 : 0 ) );
fdd_set_head( &beta_fdc->current_drive->fdd, ( ( b & 0x10 ) ? 0 : 1 ) );
/* 0x20 = density, reset = FM, set = MFM */
beta_fdc->dden = b & 0x20 ? 1 : 0;
beta_system_register = b;
}
libspectrum_byte
beta_sp_read( libspectrum_word port GCC_UNUSED, int *attached )
{
libspectrum_byte b;
if( !beta_active ) return 0xff;
*attached = 1;
b = 0;
if( beta_fdc->intrq )
b |= 0x80;
if( beta_fdc->datarq )
b |= 0x40;
/* we should reset beta_datarq, but we first need to raise it for each byte
* transferred in wd_fdc.c */
return b;
}
int
beta_disk_insert( beta_drive_number which, const char *filename,
int autoload )
{
int error;
wd_fdc_drive *d;
const fdd_params_t *dt;
if( which >= BETA_NUM_DRIVES ) {
ui_error( UI_ERROR_ERROR, "beta_disk_insert: unknown drive %d",
which );
fuse_abort();
}
d = &beta_drives[ which ];
/* Eject any disk already in the drive */
if( d->fdd.loaded ) {
/* Abort the insert if we want to keep the current disk */
if( beta_disk_eject( which ) ) return 0;
}
if( filename ) {
error = disk_open( &d->disk, filename, 0, DISK_TRY_MERGE( d->fdd.fdd_heads ) );
if( error != DISK_OK ) {
ui_error( UI_ERROR_ERROR, "Failed to open disk image: %s",
disk_strerror( d->disk.status ) );
return 1;
}
} else {
switch( which ) {
case 0:
dt = &fdd_params[ option_enumerate_diskoptions_drive_beta128a_type() + 1 ]; /* +1 => there is no `Disabled' */
break;
case 1:
dt = &fdd_params[ option_enumerate_diskoptions_drive_beta128b_type() ];
break;
case 2:
dt = &fdd_params[ option_enumerate_diskoptions_drive_beta128c_type() ];
break;
case 3:
default:
dt = &fdd_params[ option_enumerate_diskoptions_drive_beta128d_type() ];
break;
}
error = disk_new( &d->disk, dt->heads, dt->cylinders, DISK_DENS_AUTO, DISK_UDI );
if( error != DISK_OK ) {
ui_error( UI_ERROR_ERROR, "Failed to create disk image: %s",
disk_strerror( d->disk.status ) );
return 1;
}
}
fdd_load( &d->fdd, &d->disk, 0 );
/* Set the 'eject' item active */
switch( which ) {
case BETA_DRIVE_A:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_A_EJECT, 1 );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_A_FLIP_SET,
!beta_drives[ BETA_DRIVE_A ].fdd.upsidedown );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_A_WP_SET,
!beta_drives[ BETA_DRIVE_A ].fdd.wrprot );
break;
case BETA_DRIVE_B:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_B_EJECT, 1 );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_B_FLIP_SET,
!beta_drives[ BETA_DRIVE_B ].fdd.upsidedown );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_B_WP_SET,
!beta_drives[ BETA_DRIVE_B ].fdd.wrprot );
break;
case BETA_DRIVE_C:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_C_EJECT, 1 );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_C_FLIP_SET,
!beta_drives[ BETA_DRIVE_C ].fdd.upsidedown );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_C_WP_SET,
!beta_drives[ BETA_DRIVE_C ].fdd.wrprot );
break;
case BETA_DRIVE_D:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_D_EJECT, 1 );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_D_FLIP_SET,
!beta_drives[ BETA_DRIVE_D ].fdd.upsidedown );
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_D_WP_SET,
!beta_drives[ BETA_DRIVE_D ].fdd.wrprot );
break;
}
if( filename && autoload ) {
PC = 0;
machine_current->ram.last_byte |= 0x10; /* Select ROM 1 */
beta_page();
}
return 0;
}
int
beta_disk_flip( beta_drive_number which, int flip )
{
wd_fdc_drive *d;
if( which >= BETA_NUM_DRIVES )
return 1;
d = &beta_drives[ which ];
if( !d->fdd.loaded )
return 1;
fdd_flip( &d->fdd, flip );
/* Set the 'flip' item */
switch( which ) {
case BETA_DRIVE_A:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_A_FLIP_SET,
!beta_drives[ BETA_DRIVE_A ].fdd.upsidedown );
break;
case BETA_DRIVE_B:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_B_FLIP_SET,
!beta_drives[ BETA_DRIVE_B ].fdd.upsidedown );
break;
case BETA_DRIVE_C:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_C_FLIP_SET,
!beta_drives[ BETA_DRIVE_C ].fdd.upsidedown );
break;
case BETA_DRIVE_D:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_D_FLIP_SET,
!beta_drives[ BETA_DRIVE_D ].fdd.upsidedown );
break;
}
return 0;
}
int
beta_disk_writeprotect( beta_drive_number which, int wrprot )
{
wd_fdc_drive *d;
if( which >= BETA_NUM_DRIVES )
return 1;
d = &beta_drives[ which ];
if( !d->fdd.loaded )
return 1;
fdd_wrprot( &d->fdd, wrprot );
/* Set the 'writeprotect' item */
switch( which ) {
case BETA_DRIVE_A:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_A_WP_SET,
!beta_drives[ BETA_DRIVE_A ].fdd.wrprot );
break;
case BETA_DRIVE_B:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_B_WP_SET,
!beta_drives[ BETA_DRIVE_B ].fdd.wrprot );
break;
case BETA_DRIVE_C:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_C_WP_SET,
!beta_drives[ BETA_DRIVE_C ].fdd.wrprot );
break;
case BETA_DRIVE_D:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_D_WP_SET,
!beta_drives[ BETA_DRIVE_D ].fdd.wrprot );
break;
}
return 0;
}
int
beta_disk_eject( beta_drive_number which )
{
wd_fdc_drive *d;
char drive;
if( which >= BETA_NUM_DRIVES )
return 1;
d = &beta_drives[ which ];
if( !d->fdd.loaded )
return 0;
if( d->disk.dirty ) {
ui_confirm_save_t confirm;
switch( which ) {
case BETA_DRIVE_A: drive = 'A'; break;
case BETA_DRIVE_B: drive = 'B'; break;
case BETA_DRIVE_C: drive = 'C'; break;
case BETA_DRIVE_D: drive = 'D'; break;
default: drive = '?'; break;
}
confirm = ui_confirm_save(
"Disk in Beta drive %c: has been modified.\n"
"Do you want to save it?",
drive
);
switch( confirm ) {
case UI_CONFIRM_SAVE_SAVE:
if( beta_disk_save( which, 0 ) ) return 1; /* first save */
break;
case UI_CONFIRM_SAVE_DONTSAVE: break;
case UI_CONFIRM_SAVE_CANCEL: return 1;
}
}
fdd_unload( &d->fdd );
disk_close( &d->disk );
/* Set the 'eject' item inactive */
switch( which ) {
case BETA_DRIVE_A:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_A_EJECT, 0 );
break;
case BETA_DRIVE_B:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_B_EJECT, 0 );
break;
case BETA_DRIVE_C:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_C_EJECT, 0 );
break;
case BETA_DRIVE_D:
ui_menu_activate( UI_MENU_ITEM_MEDIA_DISK_BETA_D_EJECT, 0 );
break;
}
return 0;
}
int
beta_disk_save( beta_drive_number which, int saveas )
{
wd_fdc_drive *d;
if( which >= BETA_NUM_DRIVES )
return 1;
d = &beta_drives[ which ];
if( !d->fdd.loaded )
return 0;
if( d->disk.filename == NULL ) saveas = 1;
if( ui_beta_disk_write( which, saveas ) ) return 1;
d->disk.dirty = 0;
return 0;
}
int
beta_disk_write( beta_drive_number which, const char *filename )
{
wd_fdc_drive *d = &beta_drives[ which ];
int error;
d->disk.type = DISK_TYPE_NONE;
if( filename == NULL ) filename = d->disk.filename; /* write over original file */
error = disk_write( &d->disk, filename );
if( error != DISK_OK ) {
ui_error( UI_ERROR_ERROR, "couldn't write '%s' file: %s", filename,
disk_strerror( error ) );
return 1;
}
if( d->disk.filename && strcmp( filename, d->disk.filename ) ) {
free( d->disk.filename );
d->disk.filename = utils_safe_strdup( filename );
}
return 0;
}
fdd_t *
beta_get_fdd( beta_drive_number which )
{
return &( beta_drives[ which ].fdd );
}
static void
beta_event_index( libspectrum_dword last_tstates, int type, void *user_data )
{
int next_tstates;
int i;
beta_index_pulse = !beta_index_pulse;
for( i = 0; i < BETA_NUM_DRIVES; i++ ) {
wd_fdc_drive *d = &beta_drives[ i ];
d->index_pulse = beta_index_pulse;
/* disabled, until we have better timing emulation,
* to avoid interrupts while reading/writing data */
if( !beta_index_pulse && d->index_interrupt ) {
wd_fdc_set_intrq( beta_fdc );
d->index_interrupt = 0;
}
}
next_tstates = ( beta_index_pulse ? 10 : 190 ) *
machine_current->timings.processor_speed / 1000;
event_add( last_tstates + next_tstates, index_event );
}
static void
beta_enabled_snapshot( libspectrum_snap *snap )
{
if( libspectrum_snap_beta_active( snap ) )
settings_current.beta128 = 1;
}
static void
beta_from_snapshot( libspectrum_snap *snap )
{
if( !libspectrum_snap_beta_active( snap ) ) return;
if( !( machine_current->capabilities &
LIBSPECTRUM_MACHINE_CAPABILITY_128_MEMORY ) ) {
settings_current.beta128_48boot = libspectrum_snap_beta_autoboot( snap );
}
beta_active = libspectrum_snap_beta_paged( snap );
if( beta_active ) {
beta_page();
} else {
beta_unpage();
}
if( libspectrum_snap_beta_custom_rom( snap ) &&
libspectrum_snap_beta_rom( snap, 0 ) &&
machine_load_rom_bank_from_buffer(
beta_memory_map_romcs, 0,
libspectrum_snap_beta_rom( snap, 0 ),
0x4000, 1 ) )
return;
/* ignore drive count for now, there will be an issue with loading snaps where
drives have been disabled
libspectrum_snap_beta_drive_count( snap )
*/
beta_fdc->direction = libspectrum_snap_beta_direction( snap );
beta_cr_write ( 0x001f, 0 );
beta_tr_write ( 0x003f, libspectrum_snap_beta_track ( snap ) );
beta_sec_write( 0x005f, libspectrum_snap_beta_sector( snap ) );
beta_dr_write ( 0x007f, libspectrum_snap_beta_data ( snap ) );
beta_sp_write ( 0x00ff, libspectrum_snap_beta_system( snap ) );
}
void
beta_to_snapshot( libspectrum_snap *snap )
{
wd_fdc *f = beta_fdc;
libspectrum_byte *buffer;
int drive_count = 0;
if( !periph_is_active( PERIPH_TYPE_BETA128 ) ) return;
libspectrum_snap_set_beta_active( snap, 1 );
if( beta_memory_map_romcs[0].save_to_snapshot ) {
size_t rom_length = MEMORY_PAGE_SIZE * 2;
buffer = malloc( rom_length );
if( !buffer ) {
ui_error( UI_ERROR_ERROR, "Out of memory at %s:%d", __FILE__, __LINE__ );
return;
}
memcpy( buffer, beta_memory_map_romcs[0].page, MEMORY_PAGE_SIZE );
memcpy( buffer + MEMORY_PAGE_SIZE, beta_memory_map_romcs[1].page,
MEMORY_PAGE_SIZE );
libspectrum_snap_set_beta_rom( snap, 0, buffer );
libspectrum_snap_set_beta_custom_rom( snap, 1 );
}
drive_count++; /* Drive A is not removable */
if( option_enumerate_diskoptions_drive_beta128b_type() > 0 ) drive_count++;
if( option_enumerate_diskoptions_drive_beta128c_type() > 0 ) drive_count++;
if( option_enumerate_diskoptions_drive_beta128d_type() > 0 ) drive_count++;
libspectrum_snap_set_beta_drive_count( snap, drive_count );
libspectrum_snap_set_beta_paged ( snap, beta_active );
if( !( machine_current->capabilities &
LIBSPECTRUM_MACHINE_CAPABILITY_128_MEMORY ) ) {
libspectrum_snap_set_beta_autoboot( snap, settings_current.beta128_48boot );
}
libspectrum_snap_set_beta_direction( snap, beta_fdc->direction );
libspectrum_snap_set_beta_status( snap, f->status_register );
libspectrum_snap_set_beta_track ( snap, f->track_register );
libspectrum_snap_set_beta_sector( snap, f->sector_register );
libspectrum_snap_set_beta_data ( snap, f->data_register );
libspectrum_snap_set_beta_system( snap, beta_system_register );
}
int
beta_unittest( void )
{
int r = 0;
beta_page();
r += unittests_assert_16k_page( 0x0000, beta_memory_source, 0 );
r += unittests_assert_16k_ram_page( 0x4000, 5 );
r += unittests_assert_16k_ram_page( 0x8000, 2 );
r += unittests_assert_16k_ram_page( 0xc000, 0 );
beta_unpage();
r += unittests_paging_test_48( 2 );
return r;
}
|