?? jedi.c
字號:
/***************************************************************************
sndhrdw\jedi.c
***************************************************************************/
#include "driver.h"
/* Misc sound code */
void jedi_speech_w(int offset, int data)
{
static unsigned char speech_write_buffer;
if(offset<0xff)
{
speech_write_buffer = data;
}
else if (offset<0x1ff)
{
tms5220_data_w(0,speech_write_buffer);
}
}
int jedi_speech_ready_r(int offset)
{
return (!tms5220_ready_r())<<7;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -