Re: A82: Start Me Up
[Prev][Next][Index][Thread]
Re: A82: Start Me Up
Larry G Currie wrote:
>
> Okay guys, I am pretty good at BASIC, maybe not excellent, but if you do
> good graphics, the mangled code doesn't look so bad. (Isn't that right
> Bill?) But I am new to this asm stuff. I got Dines six lessons (Where
> has he been anyway?) but I am quite confused. I think jumps are goto's,
> and I think I understand how to store data at the end of a program and
> then recall it, to do a title screen.
>
> Down to business; what I need:
> How do you do if then's?
I'm not sure
> How do you do add/subtraction?
ld a,27 ; 27->a
add a,27 ; a+27->a
> How do you do labels?
Label:
> How do you do for loops?
loop:
....
....
....
....
jr loop
> How do you do output text/ variable values?
look at the hello world program
>
> Anyone? Please!?!
>
> You may respond privately to Larry1492@juno.com
> ~Larry C
> Larry1492@juno.com
Follow-Ups:
References: