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.
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)
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)
You can look at:
\masm32\examples\exampl04\jacts\jacts.asm
Alarm with selectable alarm sound
Countdown timer
Stopwatch
hth,
farrier
I really appreciate your help
I looked into the resources you suggested and they are much of a help
thanx :)