代码搜索结果
找到约 12,685 项符合
Sound 的代码
sound.asm
sound proc near
push ax
push dx
mov dx,cx
in al,61h
and al,11111100b
trig:
xor al,2
out 61h,al
mov cx,bx
delay:
loop delay
dec dx
jne trig
pop dx
pop ax
ret
sound endp
sound.html
清华大学图书馆主页 - INTERNET 教室 - HTML 语言教程
听见了吗???
如果没有,检查一下您的机器上的声卡工作正常吗?
sound.h
extern int sound;
extern int sndinit;
#define S_START 0
#define S_END 1
#define S_COLIZE 2
#define S_DESTROY_BALL 3
#define S_DESTROY_ROCKET 4
#define S_CREATOR1 5
#define S_CREATOR2 6
#
sound.dsp
# Microsoft Developer Studio Project File - Name="sound" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Dyn
sound.rc2
//
// SOUND.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
/////
sound.plg
Build Log
--------------------Configuration: Sound - Win32 Release--------------------
Command Lines
Creating command line "rc.exe /l 0x407 /fo
sound.dsp
# Microsoft Developer Studio Project File - Name="Sound" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) App
sound.java
package kyodai;
//import java.io.*;
import javax.sound.sampled.*;
import java.net.*;
/**
* 控制音乐特效
*/
public class Sound implements Runnable {
String currentName;
Object currentSound
sound.asm
public sound
cseg segment para 'code'
assume cs:cseg
waitf proc near
push ax
waitf1:
in al,61h
and al,10h
cmp al,ah
je waitf1
mov ah,al
loop waitf1
pop ax
ret
waitf endp
sound.dsp
# Microsoft Developer Studio Project File - Name="sound" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Dyn