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
|
/*
Hatari - psg.c
This file is distributed under the GNU General Public License, version 2
or at your option any later version. Read the file gpl.txt for details.
Programmable Sound Generator (YM-2149) - PSG
Also used for the printer (centronics) port emulation (PSG Port B, Register 15)
*/
/* 2007/04/14 [NP] First approximation to get cycle accurate accesses to ff8800/02 */
/* by cumulating wait state of 1 cycle and rounding the final */
/* result to 4. */
/* 2007/04/29 [NP] Functions PSG_Void_WriteByte and PSG_Void_ReadByte to handle */
/* accesses to $ff8801/03. These adresses have no effect, but they */
/* must give a 1 cycle wait state (e.g. move.l d0,ff8800). */
/* 2007/09/29 [NP] Replace printf by calls to HATARI_TRACE. */
/* 2007/10/23 [NP] In PSG_Void_WriteByte, add a wait state only if no wait state */
/* were added so far (hack, but gives good result). */
/* 2007/11/18 [NP] In PSG_DataRegister_WriteByte, set unused bit to 0, in case */
/* the data reg is read later (fix Mindbomb Demo / BBC). */
/* 2008/04/20 [NP] In PSG_DataRegister_WriteByte, set unused bit to 0 for register */
/* 6 too (noise period). */
/* 2008/07/27 [NP] Better separation between accesses to the YM hardware registers */
/* and the sound rendering routines. Use Sound_WriteReg() to pass */
/* all writes to the sound rendering functions. This allows to */
/* have sound.c independent of psg.c (to ease replacement of */
/* sound.c by another rendering method). */
/* 2008/08/11 [NP] Set drive leds. */
/* 2008/10/16 [NP] When writing to $ff8800, register select should not be masked */
/* with 0xf, it's a real 8 bits register where all bits are */
/* significant. This means only value <16 should be considered as */
/* valid register selection. When reg select is >= 16, all writes */
/* and reads in $ff8802 should be ignored. */
/* (fix European Demo Intro, which sets addr reg to 0x10 when */
/* sample playback is disabled). */
/* 2008/12/21 [NP] After testing different cases on a real STF, rewrite registers */
/* handling. As only pins BC1 and BDIR are used in an Atari to */
/* address the YM2149, this means only 1 bit is necessary to access*/
/* select/data registers. Other variations of the $ff88xx addresses*/
/* will point to either $ff8800 or $ff8802. Only bit 1 of $ff88xx */
/* is useful to know which register is accessed in the YM2149. */
/* So, it's possible to access the YM2149 with $ff8801 and $ff8803 */
/* but under conditions : the write to a shadow address (bit 0=1) */
/* can't be made by an instruction that writes to the same address */
/* with bit 0=0 at the same time (.W or .L access). */
/* In that case, only the address with bit 0=0 is taken into */
/* account. This means a write to $ff8801/03 will succeed only if */
/* the access size is .B (byte) or the opcode is a movep (because */
/* in that case we won't access the same register with 2 different */
/* addresses) (fix the game X-Out, which uses movep.w to write to */
/* $ff8801/03). */
/* Refactorize some code for cleaner handling of these accesses. */
/* Only reads to $ff8800 will return a data, reads to $ff8801/02/03*/
/* always return 0xff (tested on STF). */
/* When PSGRegisterSelect > 15, reads to $ff8800 also return 0xff. */
/* 2009/01/24 [NP] Remove redundant test, as movep implies SIZE_BYTE access. */
/* 2011/10/30 [NP] There's a special case when reading a register from $ff8800 : */
/* if the register number was not changed since the last write, */
/* then we must return the value that was written to $ff8802 */
/* without masking the unused bit (fix the game Murders In Venice, */
/* which expects to read $10 from reg 3). */
/* 2015/10/15 [NP] Better handling of the wait states when accessing YM2149 regs. */
/* Replace M68000_WaitState(1) by PSG_WaitState() which adds */
/* 4 cycles every 4th access. Previous method worked because all */
/* cycles were rounded to 4, but it was not how real HW works and */
/* would not work in cycle exact mode where cycles are not rounded.*/
/* Emulating wait states when accessing $ff8800/01/02/03 with different 'move' variants */
/* is a complex task. So far, adding 1 cycle wait state to each access and rounding the */
/* final number to 4 gave some good results, but this is certainly not the way it's */
/* working for real in the ST. */
/* Also in Hatari it only works when the cpu rounds all cycles to the next multiple */
/* of 4, but it will not work when running in cycle exact mode. This means we must */
/* add 4 cycles at a time, but not on every register access, see below. */
/* */
/* The following examples show some verified wait states for different accesses : */
/* lea $ffff8800,a1 */
/* lea $ffff8802,a2 */
/* lea $ffff8801,a3 */
/* */
/* movep.w d1,(a1) ; 20 16+4 (ventura loader) */
/* movep.l d1,(a1) ; 28 24+4 (ventura loader, ulm loader) */
/* */
/* movep.l d6,0(a5) ; 28 24+4 (SNY I, TCB) */
/* movep.w d5,0(a5) ; 20 16+4 (SNY I, TCB) */
/* */
/* move.b d1,(a1) ; 12 8+4 */
/* move.b d1,(a2) ; 12 8+4 */
/* move.b d1,(a3) ; 12 8+4 (crickey ulm hidden) */
/* */
/* move.w d1,(a1) ; 12 8+4 */
/* move.w d1,(a2) ; 12 8+4 */
/* move.l d1,(a1) ; 16 12+4 (ulm loader) */
/* */
/* movem.l d1,(a1) ; 20 16+4 */
/* movem.l d1-d2,(a1) ; 28 24+4 */
/* movem.l d1-d3,(a1) ; 40 32+4+4 */
/* movem.l d1-d4,(a1) ; 48 40+4+4 */
/* movem.l d1-d5,(a1) ; 60 48+4+4+4 */
/* movem.l d1-d6,(a1) ; 68 56+4+4+4 */
/* movem.l d1-d7,(a1) ; 80 64+4+4+4+4 */
/* movem.l d0-d7,(a1) ; 88 72+4+4+4+4 */
/* */
/* movep.w d0,(a3) (X-Out) */
/* */
/* clr.b (a1) ; 20 12+8 (4 for read + 4 for write) */
/* tas (a1) ; 16 (no waitstate ?) */
/* */
/* */
/* This gives the following "model" : */
/* - each instruction accessing a valid YM2149 register gets an initial 4 cycle */
/* wait state for the 1st access (whether it accesses just 1 reg (eg move.b) */
/* or up to 4 regs (movep.l)). */
/* - susbequent accesses made by the same instruction don't add more wait state */
/* (except if the instruction is a MOVEM). */
/* - MOVEM can access more than 4 regs (up to 15) : in that case we add 4 extra */
/* cycles each time we access a 4th register (eg : regs 4,8,12, ...) */
/* - accesses to $ff8801 or $ff8803 are considered "valid" only if we don't access */
/* the corresponding "non shadow" addresses $ff8800/02 at the same time (ie with */
/* the same instruction). */
/* This means only .B size (move.b for example) or movep opcode will work. */
/* If the access is valid, add 4 cycle wait state when necessary, else ignore */
/* the write and don't add any cycle. */
const char PSG_fileid[] = "Hatari psg.c : " __DATE__ " " __TIME__;
#include "main.h"
#include "configuration.h"
#include "ioMem.h"
#include "joy.h"
#include "log.h"
#include "m68000.h"
#include "memorySnapShot.h"
#include "sound.h"
#include "printer.h" /* because Printer I/O goes through PSG Register 15 */
#include "psg.h"
#if ENABLE_DSP_EMU
#include "falcon/dsp.h"
#endif
#include "screen.h"
#include "video.h"
#include "statusbar.h"
#include "mfp.h"
#include "fdc.h"
static Uint8 PSGRegisterSelect; /* Write to 0xff8800 sets the register number used in read/write accesses */
static Uint8 PSGRegisterReadData; /* Value returned when reading from 0xff8800 */
Uint8 PSGRegisters[MAX_PSG_REGISTERS]; /* Registers in PSG, see PSG_REG_xxxx */
static unsigned int LastStrobe=0; /* Falling edge of Strobe used for printer */
/*-----------------------------------------------------------------------*/
/**
* Reset variables used in PSG
*/
void PSG_Reset(void)
{
int i;
if (LOG_TRACE_LEVEL(TRACE_PSG_WRITE))
{
int FrameCycles, HblCounterVideo, LineCycles;
Video_GetPosition ( &FrameCycles , &HblCounterVideo , &LineCycles );
LOG_TRACE_PRINT("ym reset video_cyc=%d %d@%d pc=%x instr_cycle %d\n",
FrameCycles, LineCycles, HblCounterVideo, M68000_GetPC(), CurrentInstrCycles);
}
PSGRegisterSelect = 0;
PSGRegisterReadData = 0;
memset(PSGRegisters, 0, sizeof(PSGRegisters));
PSGRegisters[PSG_REG_IO_PORTA] = 0xff; /* no drive selected + side 0 after a reset */
/* Update sound's emulation registers */
for ( i=0 ; i < NUM_PSG_SOUND_REGISTERS; i++ )
Sound_WriteReg ( i , 0 );
LastStrobe=0;
}
/*-----------------------------------------------------------------------*/
/**
* Save/Restore snapshot of local variables ('MemorySnapShot_Store' handles type)
*/
void PSG_MemorySnapShot_Capture(bool bSave)
{
/* Save/Restore details */
MemorySnapShot_Store(&PSGRegisterSelect, sizeof(PSGRegisterSelect));
MemorySnapShot_Store(&PSGRegisterReadData, sizeof(PSGRegisterReadData));
MemorySnapShot_Store(PSGRegisters, sizeof(PSGRegisters));
MemorySnapShot_Store(&LastStrobe, sizeof(LastStrobe));
}
/*-----------------------------------------------------------------------*/
/**
* Write byte to the YM address register (usually 0xff8800). This is used
* as a selector for when we read/write the YM data register (0xff8802).
*/
void PSG_Set_SelectRegister(Uint8 val)
{
/* Store register used to read/write in $ff8802. This register */
/* is 8 bits on the YM2149, this means it should not be masked */
/* with 0xf. Instead, we keep the 8 bits, but we must ignore */
/* read/write to ff8802 when PSGRegisterSelect >= 16 */
PSGRegisterSelect = val;
/* When address register is changed, a read from $ff8800 should */
/* return the masked value of the register. We set the value here */
/* to be returned in case PSG_Get_DataRegister is called */
PSGRegisterReadData = PSGRegisters[PSGRegisterSelect];
if (LOG_TRACE_LEVEL(TRACE_PSG_WRITE))
{
int FrameCycles, HblCounterVideo, LineCycles;
Video_GetPosition ( &FrameCycles , &HblCounterVideo , &LineCycles );
LOG_TRACE_PRINT("ym write reg=0x%x video_cyc=%d %d@%d pc=%x instr_cycle %d\n",
PSGRegisterSelect, FrameCycles, LineCycles, HblCounterVideo,
M68000_GetPC(), CurrentInstrCycles);
}
}
/*-----------------------------------------------------------------------*/
/**
* Read byte from 0xff8800, return PSG data
*/
Uint8 PSG_Get_DataRegister(void)
{
/* Is a valid PSG register currently selected ? */
if ( PSGRegisterSelect >= MAX_PSG_REGISTERS )
return 0xff; /* not valid, return 0xff */
if (PSGRegisterSelect == PSG_REG_IO_PORTA)
{
/* Second parallel port joystick uses centronics strobe bit as fire button: */
if (ConfigureParams.Joysticks.Joy[JOYID_PARPORT2].nJoystickMode != JOYSTICK_DISABLED)
{
if (Joy_GetStickData(JOYID_PARPORT2) & 0x80)
PSGRegisters[PSG_REG_IO_PORTA] &= ~32;
else
PSGRegisters[PSG_REG_IO_PORTA] |= 32;
}
}
else if (PSGRegisterSelect == PSG_REG_IO_PORTB)
{
/* PSG register 15 is parallel port data register - used by parallel port joysticks: */
if (ConfigureParams.Joysticks.Joy[JOYID_PARPORT1].nJoystickMode != JOYSTICK_DISABLED)
{
PSGRegisters[PSG_REG_IO_PORTB] &= 0x0f;
PSGRegisters[PSG_REG_IO_PORTB] |= ~Joy_GetStickData(JOYID_PARPORT1) << 4;
}
if (ConfigureParams.Joysticks.Joy[JOYID_PARPORT2].nJoystickMode != JOYSTICK_DISABLED)
{
PSGRegisters[PSG_REG_IO_PORTB] &= 0xf0;
PSGRegisters[PSG_REG_IO_PORTB] |= ~Joy_GetStickData(JOYID_PARPORT2) & 0x0f;
}
}
/* Read data last selected by register */
return PSGRegisterReadData;
}
/*-----------------------------------------------------------------------*/
/**
* Write byte to YM's register (0xff8802), store according to PSG select register (0xff8800)
*/
void PSG_Set_DataRegister(Uint8 val)
{
Uint8 val_old;
if (LOG_TRACE_LEVEL(TRACE_PSG_WRITE))
{
int FrameCycles, HblCounterVideo, LineCycles;
Video_GetPosition ( &FrameCycles , &HblCounterVideo , &LineCycles );
LOG_TRACE_PRINT("ym write data reg=0x%x val=0x%x video_cyc=%d %d@%d pc=%x instr_cycle %d\n",
PSGRegisterSelect, val, FrameCycles, LineCycles,
HblCounterVideo, M68000_GetPC(), CurrentInstrCycles);
}
/* Is a valid PSG register currently selected ? */
if ( PSGRegisterSelect >= MAX_PSG_REGISTERS )
return; /* not valid, ignore write and do nothing */
/* Create samples up until this point with current values */
Sound_Update(false);
/* When a read is made from $ff8800 without changing PSGRegisterSelect, we should return */
/* the non masked value. */
PSGRegisterReadData = val; /* store non masked value for PSG_Get_DataRegister */
/* Read previous content */
val_old = PSGRegisters[PSGRegisterSelect];
/* Copy value to PSGRegisters[] */
PSGRegisters[PSGRegisterSelect] = val;
/* Clear unused bits for some regs */
if ( ( PSGRegisterSelect == PSG_REG_CHANNEL_A_COARSE ) || ( PSGRegisterSelect == PSG_REG_CHANNEL_B_COARSE )
|| ( PSGRegisterSelect == PSG_REG_CHANNEL_C_COARSE ) || ( PSGRegisterSelect == PSG_REG_ENV_SHAPE ) )
PSGRegisters[PSGRegisterSelect] &= 0x0f; /* only keep bits 0 - 3 */
else if ( ( PSGRegisterSelect == PSG_REG_CHANNEL_A_AMP ) || ( PSGRegisterSelect == PSG_REG_CHANNEL_B_AMP )
|| ( PSGRegisterSelect == PSG_REG_CHANNEL_C_AMP ) || ( PSGRegisterSelect == PSG_REG_NOISE_GENERATOR ) )
PSGRegisters[PSGRegisterSelect] &= 0x1f; /* only keep bits 0 - 4 */
if ( PSGRegisterSelect < NUM_PSG_SOUND_REGISTERS )
{
/* Copy sound related registers 0..13 to the sound module's internal buffer */
Sound_WriteReg ( PSGRegisterSelect , PSGRegisters[PSGRegisterSelect] );
}
else if ( PSGRegisterSelect == PSG_REG_IO_PORTA )
{
/*
* FIXME: This is only a prelimary dirty hack!
* Port B (Printer port) - writing here needs to be dispatched to the printer
* STROBE (Port A bit5) does a short LOW and back to HIGH when the char is valid
* To print you need to write the character byte to IOB and you need to toggle STROBE
* (like EmuTOS does).
*/
/* Printer dispatching only when printing is activated */
if (ConfigureParams.Printer.bEnablePrinting)
{
/* Bit 5 - Centronics strobe? If STROBE is low and the LastStrobe was high,
then print/transfer to the emulated Centronics port.
*/
if (LastStrobe && ( (PSGRegisters[PSG_REG_IO_PORTA]&(1<<5)) == 0 ))
{
/* Seems like we want to print something... */
Printer_TransferByteTo(PSGRegisters[PSG_REG_IO_PORTB]);
/* Initiate a possible GPIP0 Printer BUSY interrupt */
MFP_InputOnChannel ( MFP_INT_GPIP0 , 0 );
/* Initiate a possible GPIP1 Falcon ACK interrupt */
if (Config_IsMachineFalcon())
MFP_InputOnChannel ( MFP_INT_GPIP1 , 0 );
}
}
LastStrobe = PSGRegisters[PSG_REG_IO_PORTA]&(1<<5);
/* Bit 0-2 : side and drive select */
if ( (PSGRegisters[PSG_REG_IO_PORTA]&(1<<1)) == 0 )
{
/* floppy drive A is ON */
Statusbar_SetFloppyLed(DRIVE_LED_A, LED_STATE_ON);
}
else
{
Statusbar_SetFloppyLed(DRIVE_LED_A, LED_STATE_OFF);
}
if ( (PSGRegisters[PSG_REG_IO_PORTA]&(1<<2)) == 0 )
{
/* floppy drive B is ON */
Statusbar_SetFloppyLed(DRIVE_LED_B, LED_STATE_ON);
}
else
{
Statusbar_SetFloppyLed(DRIVE_LED_B, LED_STATE_OFF);
}
/* Report a possible drive/side change */
FDC_SetDriveSide ( val_old & 7 , PSGRegisters[PSG_REG_IO_PORTA] & 7 );
/* handle Falcon specific bits in PORTA of the PSG */
if (Config_IsMachineFalcon())
{
/* Bit 3 - centronics port SELIN line (pin 17) */
/*
if (PSGRegisters[PSG_REG_IO_PORTA] & (1 << 3))
{
// not emulated yet
}
*/
/* Bit 4 - DSP reset? */
if(PSGRegisters[PSG_REG_IO_PORTA]&(1<<4))
{
Log_Printf(LOG_DEBUG, "Calling DSP_Reset?\n");
#if ENABLE_DSP_EMU
if (ConfigureParams.System.nDSPType == DSP_TYPE_EMU) {
DSP_Reset();
}
#endif
}
/* Bit 6 - Internal Speaker control */
if(PSGRegisters[PSG_REG_IO_PORTA]&(1<<6))
{
/*Log_Printf(LOG_DEBUG, "Falcon: Internal Speaker state\n");*/
/* FIXME: add code to handle? (if we want to emulate the speaker at all? */
}
/* Bit 7 - Reset IDE? */
if(PSGRegisters[PSG_REG_IO_PORTA]&(1<<7))
{
Log_Printf(LOG_DEBUG, "Falcon: Reset IDE subsystem\n");
/* FIXME: add code to handle IDE reset */
}
}
}
}
/*-----------------------------------------------------------------------*/
/**
* Handle wait state when accessing YM2149 registers
* - each instruction accessing YM2149 gets an initial 4 cycle wait state
* for the 1st access (whether it accesses just 1 reg (eg move.b) or up to 4 regs (movep.l))
* - special case for movem which can access more than 4 regs (up to 15) :
* we add 4 extra cycles each time we access a 4th reg (eg : regs 4,8,12, ...)
*
* See top of this file for several examples measured on real STF
*/
static void PSG_WaitState(void)
{
#if 0
M68000_WaitState(1); /* [NP] FIXME not 100% accurate, but gives good results */
#else
static Uint64 PSG_InstrPrevClock;
static int NbrAccesses;
if ( PSG_InstrPrevClock != CyclesGlobalClockCounter ) /* New instruction accessing YM2149 : add 4 cycles */
{
M68000_WaitState ( 4 );
PSG_InstrPrevClock = CyclesGlobalClockCounter;
NbrAccesses = 0;
}
else /* Same instruction doing several accesses : only movem can add more cycles */
{
if ( ( OpcodeFamily == i_MVMEL ) || ( OpcodeFamily == i_MVMLE ) )
{
NbrAccesses += 1;
if ( NbrAccesses % 4 == 0 ) /* Add 4 extra cycles every 4th access */
M68000_WaitState ( 4 );
}
}
#endif
}
/*-----------------------------------------------------------------------*/
/**
* Read byte from 0xff8800. Return current content of data register
*/
void PSG_ff8800_ReadByte(void)
{
PSG_WaitState();
IoMem[IoAccessCurrentAddress] = PSG_Get_DataRegister();
if (LOG_TRACE_LEVEL(TRACE_PSG_READ))
{
int FrameCycles, HblCounterVideo, LineCycles;
Video_GetPosition ( &FrameCycles , &HblCounterVideo , &LineCycles );
LOG_TRACE_PRINT("ym read data %x=0x%x video_cyc=%d %d@%d pc=%x instr_cycle %d\n",
IoAccessCurrentAddress, IoMem[IoAccessCurrentAddress],
FrameCycles, LineCycles, HblCounterVideo, M68000_GetPC(), CurrentInstrCycles);
}
}
/*-----------------------------------------------------------------------*/
/**
* Read byte from 0xff8801/02/03. Return 0xff.
*/
void PSG_ff880x_ReadByte(void)
{
PSG_WaitState();
IoMem[IoAccessCurrentAddress] = 0xff;
if (LOG_TRACE_LEVEL(TRACE_PSG_READ))
{
int FrameCycles, HblCounterVideo, LineCycles;
Video_GetPosition ( &FrameCycles , &HblCounterVideo , &LineCycles );
LOG_TRACE_PRINT("ym read void %x=0x%x video_cyc=%d %d@%d pc=%x instr_cycle %d\n",
IoAccessCurrentAddress, IoMem[IoAccessCurrentAddress],
FrameCycles, LineCycles, HblCounterVideo, M68000_GetPC(), CurrentInstrCycles);
}
}
/*-----------------------------------------------------------------------*/
/**
* Write byte to 0xff8800. Set content of YM's address register.
*/
void PSG_ff8800_WriteByte(void)
{
PSG_WaitState();
if (LOG_TRACE_LEVEL(TRACE_PSG_WRITE))
{
int FrameCycles, HblCounterVideo, LineCycles;
Video_GetPosition ( &FrameCycles , &HblCounterVideo , &LineCycles );
LOG_TRACE_PRINT("ym write %x=0x%x video_cyc=%d %d@%d pc=%x instr_cycle %d\n",
IoAccessCurrentAddress, IoMem[IoAccessCurrentAddress],
FrameCycles, LineCycles, HblCounterVideo, M68000_GetPC(), CurrentInstrCycles);
}
PSG_Set_SelectRegister ( IoMem[IoAccessCurrentAddress] );
}
/*-----------------------------------------------------------------------*/
/**
* Write byte to 0xff8801. Set content of YM's address register under conditions.
* Address 0xff8801 is a shadow version of 0xff8800, so both addresses can't be written
* at the same time by the same instruction. This means only a .B access or
* a movep will have a valid effect, other accesses are ignored.
*/
void PSG_ff8801_WriteByte(void)
{
if ( nIoMemAccessSize == SIZE_BYTE ) /* byte access or movep */
{
PSG_WaitState();
if (LOG_TRACE_LEVEL(TRACE_PSG_WRITE))
{
int FrameCycles, HblCounterVideo, LineCycles;
Video_GetPosition ( &FrameCycles , &HblCounterVideo , &LineCycles );
LOG_TRACE_PRINT("ym write %x=0x%x video_cyc=%d %d@%d pc=%x instr_cycle %d\n",
IoAccessCurrentAddress, IoMem[IoAccessCurrentAddress],
FrameCycles, LineCycles, HblCounterVideo, M68000_GetPC(), CurrentInstrCycles);
}
PSG_Set_SelectRegister ( IoMem[IoAccessCurrentAddress] );
}
else
{ /* do nothing, just a trace if needed */
if (LOG_TRACE_LEVEL(TRACE_PSG_WRITE))
{
int FrameCycles, HblCounterVideo, LineCycles;
Video_GetPosition ( &FrameCycles , &HblCounterVideo , &LineCycles );
LOG_TRACE_PRINT("ym write ignored %x=0x%x video_cyc=%d %d@%d pc=%x instr_cycle %d\n",
IoAccessCurrentAddress, IoMem[IoAccessCurrentAddress],
FrameCycles, LineCycles, HblCounterVideo, M68000_GetPC(), CurrentInstrCycles);
}
}
}
/*-----------------------------------------------------------------------*/
/**
* Write byte to 0xff8802. Set content of YM's data register.
*/
void PSG_ff8802_WriteByte(void)
{
PSG_WaitState();
if (LOG_TRACE_LEVEL(TRACE_PSG_WRITE))
{
int FrameCycles, HblCounterVideo, LineCycles;
Video_GetPosition ( &FrameCycles , &HblCounterVideo , &LineCycles );
LOG_TRACE_PRINT("ym write %x=0x%x video_cyc=%d %d@%d pc=%x instr_cycle %d\n",
IoAccessCurrentAddress, IoMem[IoAccessCurrentAddress],
FrameCycles, LineCycles, HblCounterVideo, M68000_GetPC(), CurrentInstrCycles);
}
PSG_Set_DataRegister ( IoMem[IoAccessCurrentAddress] );
}
/*-----------------------------------------------------------------------*/
/**
* Write byte to 0xff8803. Set content of YM's data register under conditions.
* Address 0xff8803 is a shadow version of 0xff8802, so both addresses can't be written
* at the same time by the same instruction. This means only a .B access or
* a movep will have a valid effect, other accesses are ignored.
*/
void PSG_ff8803_WriteByte(void)
{
if ( nIoMemAccessSize == SIZE_BYTE ) /* byte access or movep */
{
PSG_WaitState();
if (LOG_TRACE_LEVEL(TRACE_PSG_WRITE))
{
int FrameCycles, HblCounterVideo, LineCycles;
Video_GetPosition ( &FrameCycles , &HblCounterVideo , &LineCycles );
LOG_TRACE_PRINT("ym write %x=0x%x video_cyc=%d %d@%d pc=%x instr_cycle %d\n",
IoAccessCurrentAddress, IoMem[IoAccessCurrentAddress],
FrameCycles, LineCycles, HblCounterVideo, M68000_GetPC(), CurrentInstrCycles);
}
PSG_Set_DataRegister ( IoMem[IoAccessCurrentAddress] );
}
else
{ /* do nothing, just a trace if needed */
if (LOG_TRACE_LEVEL(TRACE_PSG_WRITE))
{
int FrameCycles, HblCounterVideo, LineCycles;
Video_GetPosition ( &FrameCycles , &HblCounterVideo , &LineCycles );
LOG_TRACE_PRINT("ym write ignored %x=0x%x video_cyc=%d %d@%d pc=%x instr_cycle %d\n",
IoAccessCurrentAddress, IoMem[IoAccessCurrentAddress],
FrameCycles, LineCycles, HblCounterVideo, M68000_GetPC(), CurrentInstrCycles);
}
}
}
/* ------------------------------------------------------------------
* YM-2149 register content dump (for debugger info command)
*/
void PSG_Info(FILE *fp, Uint32 dummy)
{
int i;
for(i = 0; i < ARRAY_SIZE(PSGRegisters); i++)
{
fprintf(fp, "Reg $%02X : $%02X\n", i, PSGRegisters[i]);
}
}
|