Previous 199869 Revisions Next

r33104 Saturday 1st November, 2014 at 09:31:16 UTC by Scott Stone
Get mess compiling again - uint32 should be enough, eh?  (nw)
[src/emu/bus/cpc]playcity.c

trunk/src/emu/bus/cpc/playcity.c
r241615r241616
126126{
127127   // Bit of a hack job here, since there is no way currently to connect the CTC channel output directly to the YMZ clocks.
128128   UINT8 rate = m_ctc->get_channel_constant(0);
129   UINT64 clk = XTAL_4MHz;
129   UINT32 clk = XTAL_4MHz;
130130
131131   switch(rate)
132132   {
r241615r241616
151151   clk = clk / 2;  // YMZ294 has an internal /2 divider (not handled in AY core?)
152152   m_ymz1->ay_set_clock(clk);
153153   m_ymz2->ay_set_clock(clk);
154   popmessage("YMZ clocks set to %" I64FMT "Hz",clk);
154   popmessage("YMZ clocks set to %d Hz",clk);
155155}
156156


Previous 199869 Revisions Next


© 1997-2024 The MAME Team