[A83] Re: More questions


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

[A83] Re: More questions




>> > Is it possible in assembly, to make double conditions, like in
>> > basic: if a=1
>> > and b=2:goto enz..
>>
>>cp 1
>>jr nz,NotTrue
>>ld a,b
>>cp 2
>>jr nz,NotTrue
>>True:
>>
>>; at this point: (A == 1) && (B == 2)
>>
>>NotTrue:
>>ret
>>
>>
>>Thanx, that made something clear to me.

And how about "If [variable] > 4"?