Cool Sound Effects?


Closed Thread
Results 1 to 8 of 8

Hybrid View

  1. #1
    Join Date
    Jul 2003
    Location
    Colorado Springs
    Posts
    4,959


    Did you find this post helpful? Yes | No

    Default Re: Cool Sound Effects?

    Translation to PBP.

    SoundPin VAR PORTC.7

    Post #1
    Code:
    ticksnd:
        sbuff = $FF
        WHILE sbuff != 0
            sbuff = sbuff + $1B
            SOUND SoundPin,[sbuff,1]
        WEND
    RETURN
    Post #2
    Code:
    blast:
        FOR sndcnt = $8F TO $20 STEP -3
            SOUND Sound2Pin,[sndcnt,1]
        NEXT sndcnt
    RETURN
    A little easier on the eyes.

    Uht-Oh, I got an idea......
    DT

  2. #2
    Join Date
    Oct 2009
    Location
    Utah, USA
    Posts
    427


    Did you find this post helpful? Yes | No

    Default Re: Cool Sound Effects?

    So I'd like to try some of these sound effects... But it seems this thread started out of thin air??? What am I missing? Is this a continuation of another thread? Is there a complete sample code that can be posted.

    In the dark here... (though that is nothing new for me)
    Thanks
    Dwight
    These PIC's are like intricate puzzles just waiting for one to discover their secrets and MASTER their capabilities.

  3. #3
    Join Date
    Aug 2003
    Posts
    985


    Did you find this post helpful? Yes | No

    Default Re: Cool Sound Effects?

    That is the complete code, you only need to declare the byte sized variables used,
    and use the sounds in some program of your own

  4. #4
    Join Date
    Jan 2009
    Location
    Miami, Florida USA
    Posts
    699


    Did you find this post helpful? Yes | No

    Default Re: Cool Sound Effects?

    Quote Originally Posted by Darrel Taylor View Post
    Translation to PBP.
    It is always good to have a translator .
    "No one is completely worthless. They can always serve as a bad example."

    Anonymous

Members who have read this thread : 1

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts