New machine language port
|
12-24-2019, 11:15 PM
Post: #17
|
|||
|
|||
RE: New machine language port
(12-24-2019 10:51 PM)cahlucas Wrote: ... there are still statements that cause problems, see below. Hopefully you can help me with this too. Interesting... there seem to be many subtle differences between the old HP 48 assembler tools and the 50g's assembler. I hope the following suggestions work for you. C=C-CON A,5 <----- Bad Expression! Try C=C-5.A (I don't think the 50g allows the old "CON" syntax.) C=C+CON A,16 <----- Invalid Field! Try C=C+16.A C=C-CON A,5 <----- Bad Expression! see above LC(5) =DOCSTR <----- Bad Expression! Try LC(5) DOCSTR (Omit the leading = sign) A=A+CON A,10 <----- Invalid Field! Try A=A+10.A LC(2) #2B <----- Bad Expression! Try LC 2B (see LC syntax on page 6-23 of the AUR) C=C+CON A,16 <----- Invalid Field! see above C=C-CON A,2 <----- Bad Expression! Try C=C-2.A LC(2) #2B <----- Bad Expression! see above If any of the above don't work, please let us know. <0|ΙΈ|0> -Joe- |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)