A83: Re: nat-my new asm prog


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

A83: Re: nat-my new asm prog




I had that prob before, too.  I'm not sure what in the program doesn't 
like it, but on some progs it works, on others it doesn't.
Doesn anybody else out there know?

		-Dimitri


On Sat, 4 Apr 1998 smithrh@esper.com wrote:

> How do i turn the run indicator off? when i try call _runIndicOff
> my calc freezes.
> 
> >> another prog I just wrote.
> >> 
> >> .NOLIST
> >> #define equ .equ
> >> #define EQU .equ
> >> #define end .end
> >> #include "ti83asm.inc"
> >> #include "tokens.inc"
> >> .LIST
> >> .org 9327h
> >> 
> >> 	
> >> 	call _runIndicOn       ;I want to change this to call _runIndicOff, but
> >> the calc                                   freezes every time i try
> >> 	call _clrLCDFull      
> >> 	ld a,0                 ;I mostly used Ahlmed's tutorial for this stuff
> >> 	ld (penrow),a
> >> 	ld (pencol),a
> >> 	ld hl,input
> >> 	call _vputs
> >> 	ld a,10
> >> 	ld (penrow),a
> >> 	ld (pencol),a
> >> 	ld hl,hehe
> >> 	call _vputs
> >> 	ld a,20
> >> 	ld (penrow),a
> >> 	ld (pencol),a
> >> 	ld hl,he
> >> 	call _vputs
> >> 
> >> input:
> >> 	.db "HI! I am nathan",00
> >> 	
> >> hehe:
> >> 	.db "You have recieved",00
> >> 
> >> he:
> >> 	
> >> 	.db "My first asm program",00
> >> 	
> >> loop:                                   
> >> 	
> >> 	ld a,0ffh                      ;I also got this from a tutorial, don't
> >>                                     understand this line
> >> 	out (1),a                      ;this one
> >> 	ld a,0fdh                      ;this one
> >> 	out (1),a                      ;this one
> >> 	in a,(1)                       ;or this one
> >> 	cp 191                         ;i understand this 
> >> 	jp nz,loop                     ;and this
> >
> >This is all direct key input stuff.  Look at some of Andy's tutorials for 
> >that info...  (i have them if you don't)...
> >
> >> 	
> >> 	ret
> >> 
> >> .end
> >> 
> >> 
> >> End
> >> 
> >
> >
> >Good Luck!
> >
> >		-Dimitri
> >
> >
> 


References: