Merge pull request #3437 from kazblox/master

Miscellaneous correction/documentation
This commit is contained in:
ajrhacker 2018-04-07 17:19:34 -04:00 committed by GitHub
commit 1a0fae9b4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View File

@ -124,9 +124,9 @@
* *
*************************************/ *************************************/
#define CPU_CLOCK 8000000 /* not used when video board is connected */ #define CPU_CLOCK 8_MHz_XTAL /* not used when video board is connected */
#define VIDEO_CLOCK 15468000 #define VIDEO_CLOCK 15.46848_MHz_XTAL
#define SINDBADM_SOUND_CLOCK 8000000 #define SINDBADM_SOUND_CLOCK 8_MHz_XTAL
#define PIXEL_CLOCK (VIDEO_CLOCK/3) #define PIXEL_CLOCK (VIDEO_CLOCK/3)
@ -974,10 +974,10 @@ MACHINE_CONFIG_START(segag80r_state::sindbadm)
MCFG_GENERIC_LATCH_8_ADD("soundlatch") MCFG_GENERIC_LATCH_8_ADD("soundlatch")
/* sound hardware */ /* sound hardware */
MCFG_SOUND_ADD("sn1", SN76496, SINDBADM_SOUND_CLOCK/4) MCFG_SOUND_ADD("sn1", SN76496, SINDBADM_SOUND_CLOCK/2) /* matches PCB videos, correct? */
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "speaker", 1.0) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "speaker", 1.0)
MCFG_SOUND_ADD("sn2", SN76496, SINDBADM_SOUND_CLOCK/2) MCFG_SOUND_ADD("sn2", SN76496, SINDBADM_SOUND_CLOCK/4) /* matches PCB videos, correct? */
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "speaker", 1.0) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "speaker", 1.0)
MACHINE_CONFIG_END MACHINE_CONFIG_END

View File

@ -15,6 +15,8 @@ DIP locations verified from manual for:
TODO: - remove patch in nobb if possible and fully understand the TODO: - remove patch in nobb if possible and fully understand the
ports involved in the protection ports involved in the protection
- different XTAL/divider configurations for some Star Jacker
cabinets? See you.tube/-a7srHVPb_U
******************************************************************************* *******************************************************************************