USART TX Interrupt problem. (DT_INTS)


Results 1 to 12 of 12

Threaded View

  1. #4


    Did you find this post helpful? Yes | No

    Default Re: USART TX Interrupt problem. (DT_INTS)

    OK then,

    This puts a byte at location 50 (dec) in ram
    Code:
    String_1    VAR BYTE 50       ' Array to hold string.
    this puts array of 50 where PBasic puts it
    Code:
    String_1    VAR BYTE  [50]             ' Array to hold string.
    this puts array of 50 at location $100, (100hex, 256 dec)
    Code:
    String_1    VAR BYTE  [50]              $100     ' Array to hold string.

    At the bottom of the generated LIST file is a listing of the mem locations for ram and prog mem
    there you can see the var's location and alotted space left between arrays.

    Name:  Capture2.JPG
Views: 644
Size:  120.8 KB

    Don
    Last edited by amgen; - 16th August 2011 at 14:39.

Members who have read this thread : 0

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