A83: Re: Re: Can you check this code?


[Prev][Next][Index][Thread]

A83: Re: Re: Can you check this code?




No that shouldn't matter. if you did this "ClRlCdFuLl" that should still
work.
From
                          ''~``
                        ( o o )
  ____.oooO__(_)__Oooo.____
 /  Steven Conway                         \
[                                                        ]
[   Conway@ssc.net.au                 ]
[  (   )                                                ]
 \__\ (____(   )______________/
       \_)        ) /
                 (_/

-----Original Message-----
From: Trey Jazz <joemama@minot.com>
To: assembly-83@lists.ticalc.org <assembly-83@lists.ticalc.org>
Date: Tuesday, 14 April 1998 12:55
Subject: A83: Re: Can you check this code?


>
>
>use caps for the aliases because they are in caps....
>funny part is you knew that the .equ and .end needed other aliases :)
>
>>.NOLIST                 ;You ought to know what this is by now.
>>#define equ .equ
>>#define EQU .equ
>>#define end .end
>>#include "ti83asm.inc"
>>#include "tokens.inc"
>>.LIST
>>.org 9327h
>>call _clrLCDFull        ;Clear the screen
>>        ld a,5                  ;load 5 into acc.
>>        ld (currow),a           ;load acc. (5) into (currow)
>>        ld a,6                  ;load 6 into acc.
>>        ld (curcol),a           ;load acc. (6) into (curcol)
>>        ld hl,STRING_ONE        ;load string STRING_ONE into hl
>>        call _puts              ;displays
>>        ret                     ;returns to origional program
>>STRING_ONE:                     ;Label STRING_ONE follows
>>        .db "Hi there!",0       ;defines string as "Hi there!"
>>.end
>>end                             ;ends program
>>Tasm gives me erors, Wahts rong heare
>>
>