2021-12-15 01:23:58 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								#include "sound/ymfm/ymfm.h"
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-09 13:25:02 -05:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								#include "ym2610.h"
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-10 04:22:13 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								#include "../engine.h"
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-09 13:25:02 -05:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								uint8_t DivYM2610Interface::ymfm_external_read(ymfm::access_class type, uint32_t address) {
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-10 04:22:13 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  //printf("wants to read from %x\n",address);
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  if (type!=ymfm::ACCESS_ADPCM_A) return 0;
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-10 23:41:00 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  return parent->adpcmMem[address&0xffffff];
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  /*if (12*sampleBank+(address>>16)>=parent->song.sampleLen) return 0;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  return parent->song.sample[12*sampleBank+(address>>16)]->adpcmRendData[(address&0xffff)];*/
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-09 13:25:02 -05:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								void DivYM2610Interface::ymfm_external_write(ymfm::access_class type, uint32_t address, uint8_t data) {
							 | 
						
					
						
							
								
									
										
										
										
											2021-12-10 04:22:13 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								}
							 |