The MASM Forum

General => The Campus => Topic started by: adnan-utayim on May 18, 2014, 02:39:32 AM

Title: play a simple sound
Post by: adnan-utayim on May 18, 2014, 02:39:32 AM
Hey guys,
I am actually not that experienced in using assembly language and I have to do a simple simulation of an alarm clock.
The algorithm works fine, but I am still missing the method of playing the sound file.
It shouldn't be that difficult since I only need to play a short wav sound or a system beep using masm32 instructions.
If anyone has a some simple instruction to do it I'd be very grateful.
Thanks in advance.
Title: Re: play a simple sound
Post by: dedndave on May 18, 2014, 03:01:13 AM
PlaySound works well with WAV resource sounds

http://msdn.microsoft.com/en-us/library/dd743680%28v=vs.85%29.aspx (http://msdn.microsoft.com/en-us/library/dd743680%28v=vs.85%29.aspx)
Title: Re: play a simple sound
Post by: dedndave on May 18, 2014, 03:02:29 AM
the attachment to this post is an example
http://www.masmforum.com/board/index.php?topic=15882.msg131239#msg131239 (http://www.masmforum.com/board/index.php?topic=15882.msg131239#msg131239)
Title: Re: play a simple sound
Post by: farrier on May 18, 2014, 04:11:27 AM
You can look at:

\masm32\examples\exampl04\jacts\jacts.asm

Alarm with selectable alarm sound
Countdown timer
Stopwatch

hth,

farrier
Title: Re: play a simple sound
Post by: adnan-utayim on May 18, 2014, 05:02:52 AM
I really appreciate your help
I looked into the resources you suggested and they are much of a help
thanx :)