Assembly


Closed Thread
Results 1 to 1 of 1

Thread: Assembly

  1. #1
    Join Date
    Oct 2004
    Posts
    440

    Default Assembly

    Converting a program that plays short wave files to post.

    Program plays but has problem with speed of following 32 bit var's:
    Code:
    'increments
    dMEM_ADDRESS_READ VAR WORD[2]
    dMEM_ADDRESS_READ_H VAR dMEM_ADDRESS_READ(1)
    dMEM_ADDRESS_READ_L VAR dMEM_ADDRESS_READ(0)
     
    IF dMEM_ADDRESS_READ_L < 65535 THEN
    dMEM_ADDRESS_READ_L = dMEM_ADDRESS_READ_L + 1
    ELSE
    dMEM_ADDRESS_READ_H = dMEM_ADDRESS_READ_H + 1
    dMEM_ADDRESS_READ_L = 0
    ENDIF
    Code:
    Repeat
    
    Until dMEM_ADDRESS_READ_L = dEOF_ADDRESS_L AND dMEM_ADDRESS_READ_H = dEOF_ADDRESS_H
    Could this converted to assembly?
    I am assembly helpless.

    Norm
    Last edited by Normnet; - 19th March 2007 at 04:52.

Similar Threads

  1. Microchip Assembly Commands
    By picnaut in forum Documentation
    Replies: 6
    Last Post: - 18th March 2011, 01:06
  2. Picbasic Pro Demo assembly errors
    By mikeRho in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 2nd January 2008, 07:41
  3. Assembly Guru : Question
    By Archangel in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 20th May 2007, 04:51
  4. from assembly to basic
    By shantanu in forum Off Topic
    Replies: 4
    Last Post: - 1st February 2007, 15:50
  5. How do you do this in Assembly
    By ice in forum mel PIC BASIC Pro
    Replies: 3
    Last Post: - 10th May 2005, 07:47

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