[A83] Re: Displaying Registers
[Prev][Next][Index][Thread]
[A83] Re: Displaying Registers
You can also use DispOP1a. This displays OP1 at (pencol,penrow) witha number
of digits. a safe number is always 5.
So, this is just from quick memory, you should be able to:
ld de,0*256+0
ld (penCol),de
bcall(_setxxop1)
ld a,5
bcall(_dispop1a)
If you get an undefined error on setxxop1, it may be:
bcall(_SetXXOP2)
bcall(_OP2ToOP1)
Hope this helps..
Please start looking in the 83 + SDK, all these calls are very documented and
categorized well. It will save you the trouble of waiting for emails. And
oh, guys, before responding to an email, please check for more emails on the
same topic, this question was already answered by me and someone repeated it.
-joel