jefftranter / 6502

Code for the 6502 microprocessor, mostly for the Replica 1 computer.
298 stars 66 forks source link

JMON Copy incorrect branching #11

Closed w4jbm closed 3 years ago

w4jbm commented 3 years ago

In the JMON memory copy routine, line 575 in jmon.s branches from the copy up portion of the code into the copy down portion of the code. The BNE @NotDone should be BNE @NotDone1.

jefftranter commented 3 years ago

Thanks, I will take a look.

On Sun, 28 Mar 2021 at 11:19, James McClanahan @.***> wrote:

In the JMON memory copy routine, line 575 in jmon.s branches from the copy up portion of the code into the copy down portion of the code. The BNE @NotDone should be BNE @NotDone1.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/jefftranter/6502/issues/11, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAMFU5J2UMH5BICUJ7T5Z33TF5CIPANCNFSM4Z6EGMBA .

jefftranter commented 3 years ago

FIxed in git.