⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bosco.c

📁 这个是延伸mame的在wince平台下的游戏模拟器的代码
💻 C
字号:
#include "driver.h"

/* signed/unsigned 8-bit conversion macros */
#ifdef SIGNED_SAMPLES
	#define AUDIO_CONV(A) ((A)-0x80)
#else
	#define AUDIO_CONV(A) ((A))
#endif


static signed char *speech;	/* 24k for speech */
static int channel;



int bosco_sh_start(void)
{
	int i;
	unsigned char bits;

	channel = get_play_channels(1);

	speech = malloc(0x6000);
	if (!speech)
		return 1;

	/* decode the rom samples */
	for (i = 0;i < 0x3000;i++)
	{
		bits = Machine->memory_region[5][i] & 0x0f;
		speech[2 * i] = AUDIO_CONV ((bits << 4) | bits);

		bits = Machine->memory_region[5][i] & 0xf0;
		speech[2 * i + 1] = AUDIO_CONV (bits | (bits >> 4));
	}

	return 0;
}


void bosco_sh_stop (void)
{
	if (speech)
		free(speech);
	speech = NULL;
}


void bosco_sample_play(int offset, int length)
{
	if (Machine->sample_rate == 0)
		return;

	osd_play_sample(channel,speech + offset,length,4000,0xff,0);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -