mirror of
https://git.code.sf.net/p/fuse-emulator/fuse
synced 2026-01-27 01:41:34 +03:00
To avoid clashes with any similarly named system files (thanks, BogDan Vatra and Sergio Baldoví).
361 lines
9.9 KiB
C
361 lines
9.9 KiB
C
/* scld.c: Routines for handling the Timex SCLD
|
|
Copyright (c) 2002-2016 Fredrick Meunier, Philip Kendall, Witold Filipczyk
|
|
Copyright (c) 2015 Stuart Brady
|
|
|
|
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
|
|
|
|
Fred: fredm@spamcop.net
|
|
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "compat.h"
|
|
#include "dck.h"
|
|
#include "display.h"
|
|
#include "infrastructure/startup_manager.h"
|
|
#include "machine.h"
|
|
#include "memory_pages.h"
|
|
#include "module.h"
|
|
#include "periph.h"
|
|
#include "scld.h"
|
|
#include "spectrum.h"
|
|
#include "ui/ui.h"
|
|
#include "z80/z80.h"
|
|
|
|
scld scld_last_dec; /* The last byte sent to Timex DEC port */
|
|
|
|
libspectrum_byte scld_last_hsr = 0; /* The last byte sent to Timex HSR port */
|
|
|
|
memory_page * timex_home[MEMORY_PAGES_IN_64K];
|
|
memory_page timex_exrom[MEMORY_PAGES_IN_64K];
|
|
memory_page timex_dock[MEMORY_PAGES_IN_64K];
|
|
|
|
static void scld_reset( int hard_reset );
|
|
static void scld_from_snapshot( libspectrum_snap *snap );
|
|
static void scld_to_snapshot( libspectrum_snap *snap );
|
|
|
|
static module_info_t scld_module_info = {
|
|
|
|
/* .reset = */ scld_reset,
|
|
/* .romcs = */ NULL,
|
|
/* .snapshot_enabled = */ NULL,
|
|
/* .snapshot_from = */ scld_from_snapshot,
|
|
/* .snapshot_to = */ scld_to_snapshot,
|
|
|
|
};
|
|
|
|
static libspectrum_byte scld_dec_read( libspectrum_word port, libspectrum_byte *attached );
|
|
static libspectrum_byte scld_hsr_read( libspectrum_word port, libspectrum_byte *attached );
|
|
|
|
static const periph_port_t scld_ports[] = {
|
|
{ 0x00ff, 0x00f4, scld_hsr_read, scld_hsr_write },
|
|
{ 0x00ff, 0x00ff, scld_dec_read, scld_dec_write },
|
|
{ 0, 0, NULL, NULL }
|
|
};
|
|
|
|
static const periph_t scld_periph = {
|
|
/* .option = */ NULL,
|
|
/* .ports = */ scld_ports,
|
|
/* .hard_reset = */ 0,
|
|
/* .activate = */ NULL,
|
|
};
|
|
|
|
static int
|
|
scld_init( void *context )
|
|
{
|
|
module_register( &scld_module_info );
|
|
periph_register( PERIPH_TYPE_SCLD, &scld_periph );
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
scld_register_startup( void )
|
|
{
|
|
startup_manager_module dependencies[] = { STARTUP_MANAGER_MODULE_SETUID };
|
|
startup_manager_register( STARTUP_MANAGER_MODULE_SCLD, dependencies,
|
|
ARRAY_SIZE( dependencies ), scld_init, NULL,
|
|
NULL );
|
|
}
|
|
|
|
static libspectrum_byte
|
|
scld_dec_read( libspectrum_word port GCC_UNUSED, libspectrum_byte *attached )
|
|
{
|
|
*attached = 0xff; /* TODO: check this */
|
|
|
|
return scld_last_dec.byte;
|
|
}
|
|
|
|
void
|
|
scld_dec_write( libspectrum_word port GCC_UNUSED, libspectrum_byte b )
|
|
{
|
|
scld old_dec = scld_last_dec;
|
|
scld new_dec;
|
|
libspectrum_byte ink,paper;
|
|
|
|
/* We use new_dec as we don't want to have the new colours, modes etc.
|
|
to take effect until we have updated the critical region */
|
|
new_dec.byte = b;
|
|
|
|
/* If we changed the active screen, or change the colour in hires
|
|
* mode, update the critical region and mark the entire display file as
|
|
* dirty so we redraw it on the next pass */
|
|
if( new_dec.mask.scrnmode != old_dec.mask.scrnmode ||
|
|
new_dec.name.hires != old_dec.name.hires ||
|
|
( new_dec.name.hires &&
|
|
( new_dec.mask.hirescol != old_dec.mask.hirescol ) ) ) {
|
|
display_update_critical( 0, 0 );
|
|
display_refresh_main_screen();
|
|
}
|
|
|
|
/* Commit change to scld_last_dec */
|
|
scld_last_dec = new_dec;
|
|
|
|
/* If we just reenabled interrupts, check for a retriggered interrupt */
|
|
if( old_dec.name.intdisable && !scld_last_dec.name.intdisable )
|
|
z80_interrupt();
|
|
|
|
if( scld_last_dec.name.altmembank != old_dec.name.altmembank )
|
|
machine_current->memory_map();
|
|
|
|
display_parse_attr( hires_get_attr(), &ink, &paper );
|
|
display_set_hires_border( paper );
|
|
}
|
|
|
|
static void
|
|
scld_reset( int hard_reset GCC_UNUSED )
|
|
{
|
|
scld_last_dec.byte = 0;
|
|
}
|
|
|
|
void
|
|
scld_hsr_write( libspectrum_word port GCC_UNUSED, libspectrum_byte b )
|
|
{
|
|
scld_last_hsr = b;
|
|
|
|
machine_current->memory_map();
|
|
}
|
|
|
|
static libspectrum_byte
|
|
scld_hsr_read( libspectrum_word port GCC_UNUSED, libspectrum_byte *attached )
|
|
{
|
|
*attached = 0xff; /* TODO: check this */
|
|
|
|
return scld_last_hsr;
|
|
}
|
|
|
|
libspectrum_byte
|
|
hires_get_attr( void )
|
|
{
|
|
return( hires_convert_dec( scld_last_dec.byte ) );
|
|
}
|
|
|
|
libspectrum_byte
|
|
hires_convert_dec( libspectrum_byte attr )
|
|
{
|
|
scld colour;
|
|
|
|
colour.byte = attr;
|
|
|
|
switch ( colour.mask.hirescol )
|
|
{
|
|
case BLACKWHITE: return 0x47;
|
|
case BLUEYELLOW: return 0x4e;
|
|
case REDCYAN: return 0x55;
|
|
case MAGENTAGREEN: return 0x5c;
|
|
case GREENMAGENTA: return 0x63;
|
|
case CYANRED: return 0x6a;
|
|
case YELLOWBLUE: return 0x71;
|
|
default: return 0x78; /* WHITEBLACK */
|
|
}
|
|
}
|
|
|
|
void
|
|
scld_memory_map( void )
|
|
{
|
|
int i;
|
|
memory_page *exrom_dock;
|
|
|
|
exrom_dock =
|
|
scld_last_dec.name.altmembank ? timex_exrom : timex_dock;
|
|
|
|
for( i = 0; i < 8; i++ )
|
|
if( scld_last_hsr & (1 << i) )
|
|
memory_map_8k( i * 0x2000, exrom_dock, i );
|
|
}
|
|
|
|
/* Initialise the memory map to point to the home bank */
|
|
void
|
|
scld_memory_map_home( void )
|
|
{
|
|
int i;
|
|
|
|
for( i = 0; i < MEMORY_PAGES_IN_64K; i++ )
|
|
memory_map_page( timex_home, i );
|
|
}
|
|
|
|
static void
|
|
scld_dock_exrom_from_snapshot( memory_page *dest, int page_num, int writable,
|
|
void *source )
|
|
{
|
|
int i;
|
|
libspectrum_byte *data = memory_pool_allocate( 0x2000 );
|
|
|
|
memcpy( data, source, 0x2000 );
|
|
|
|
for( i = 0; i < MEMORY_PAGES_IN_8K; i++ ) {
|
|
memory_page *page = &dest[ page_num * MEMORY_PAGES_IN_8K + i ];
|
|
page->offset = i * MEMORY_PAGE_SIZE;
|
|
page->page_num = page_num;
|
|
page->writable = writable;
|
|
page->page = data + page->offset;
|
|
page->save_to_snapshot = 1;
|
|
}
|
|
|
|
/* Reset contention for pages */
|
|
scld_set_exrom_dock_contention();
|
|
}
|
|
|
|
static void
|
|
scld_from_snapshot( libspectrum_snap *snap )
|
|
{
|
|
size_t i;
|
|
int capabilities = machine_current->capabilities;
|
|
|
|
if( capabilities & ( LIBSPECTRUM_MACHINE_CAPABILITY_TIMEX_MEMORY |
|
|
LIBSPECTRUM_MACHINE_CAPABILITY_SE_MEMORY ) )
|
|
scld_hsr_write( 0x00f4, libspectrum_snap_out_scld_hsr( snap ) );
|
|
|
|
if( capabilities & LIBSPECTRUM_MACHINE_CAPABILITY_TIMEX_VIDEO )
|
|
scld_dec_write( 0x00ff, libspectrum_snap_out_scld_dec( snap ) );
|
|
|
|
if( libspectrum_snap_dock_active( snap ) ) {
|
|
|
|
dck_active = 1;
|
|
|
|
for( i = 0; i < 8; i++ ) {
|
|
|
|
if( libspectrum_snap_dock_cart( snap, i ) )
|
|
scld_dock_exrom_from_snapshot( timex_dock, i,
|
|
libspectrum_snap_dock_ram( snap, i ),
|
|
libspectrum_snap_dock_cart( snap, i ) );
|
|
|
|
if( libspectrum_snap_exrom_cart( snap, i ) )
|
|
scld_dock_exrom_from_snapshot( timex_exrom, i,
|
|
libspectrum_snap_exrom_ram( snap, i ),
|
|
libspectrum_snap_exrom_cart( snap, i ) );
|
|
|
|
}
|
|
|
|
if( capabilities & LIBSPECTRUM_MACHINE_CAPABILITY_TIMEX_DOCK )
|
|
ui_menu_activate( UI_MENU_ITEM_MEDIA_CARTRIDGE_DOCK_EJECT, 1 );
|
|
|
|
machine_current->memory_map();
|
|
}
|
|
|
|
}
|
|
|
|
static void
|
|
scld_to_snapshot( libspectrum_snap *snap )
|
|
{
|
|
size_t i;
|
|
libspectrum_byte *buffer;
|
|
|
|
libspectrum_snap_set_out_scld_hsr( snap, scld_last_hsr );
|
|
libspectrum_snap_set_out_scld_dec( snap, scld_last_dec.byte );
|
|
|
|
if( dck_active ) {
|
|
|
|
libspectrum_snap_set_dock_active( snap, 1 );
|
|
|
|
for( i = 0; i < 8; i++ ) {
|
|
|
|
memory_page *exrom_base = &timex_exrom[i * MEMORY_PAGES_IN_8K],
|
|
*dock_base = &timex_dock[i * MEMORY_PAGES_IN_8K];
|
|
int j;
|
|
|
|
/* In theory, Fuse could somehow have set up a memory map in which the
|
|
first 4Kb of a DOCK page is writable, but the second 4Kb is not, and
|
|
this structure is not representable in a snapshot.
|
|
|
|
However, there's currently no code which could produce this situation
|
|
so for simplicity's sake, we assume the properties of the lowest page
|
|
in the 8Kb chunk apply to all the pages */
|
|
|
|
if( exrom_base->save_to_snapshot || exrom_base->writable ) {
|
|
buffer = libspectrum_new( libspectrum_byte, 0x2000 );
|
|
|
|
libspectrum_snap_set_exrom_ram( snap, i, exrom_base->writable );
|
|
for( j = 0; j < MEMORY_PAGES_IN_8K; j++ ) {
|
|
memory_page *page = exrom_base + j;
|
|
memcpy( buffer + j * MEMORY_PAGE_SIZE, page->page, MEMORY_PAGE_SIZE );
|
|
}
|
|
libspectrum_snap_set_exrom_cart( snap, i, buffer );
|
|
}
|
|
|
|
if( dock_base->save_to_snapshot || dock_base->writable ) {
|
|
buffer = libspectrum_new( libspectrum_byte, 0x2000 );
|
|
|
|
libspectrum_snap_set_dock_ram( snap, i, dock_base->writable );
|
|
for( j = 0; j < MEMORY_PAGES_IN_8K; j++ ) {
|
|
memory_page *page = dock_base + j;
|
|
memcpy( buffer + j * MEMORY_PAGE_SIZE, page->page, MEMORY_PAGE_SIZE );
|
|
}
|
|
libspectrum_snap_set_dock_cart( snap, i, buffer );
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
/* Map 16K of memory and record default mapping for dock */
|
|
void
|
|
scld_home_map_16k( libspectrum_word address, memory_page source[],
|
|
int page_num )
|
|
{
|
|
int i;
|
|
|
|
memory_map_16k( address, source, page_num );
|
|
|
|
for( i = 0; i < MEMORY_PAGES_IN_16K; i++ ) {
|
|
int page = ( address >> MEMORY_PAGE_SIZE_LOGARITHM ) + i;
|
|
timex_home[ page ] = &source[ page_num * MEMORY_PAGES_IN_16K + i ];
|
|
}
|
|
}
|
|
|
|
/* Set contention for SCLD, contended in home, Dock and Exrom in the 0x4000 -
|
|
0x7FFF range */
|
|
void
|
|
scld_set_exrom_dock_contention( void )
|
|
{
|
|
int i;
|
|
const int page_num = 1;
|
|
|
|
for( i = 0; i < MEMORY_PAGES_IN_16K; i++ ) {
|
|
timex_exrom[ page_num * MEMORY_PAGES_IN_16K + i ].contended = 1;
|
|
timex_dock[ page_num * MEMORY_PAGES_IN_16K + i ].contended = 1;
|
|
}
|
|
}
|