changeset 2881:34bcc77d2c7f lwtools-port

level1 krn.asm: Revert debug(?) modification in commented code The compare instruction doesn't make sense if followed by "bra". Not sure why it was tried out, put put back "bcc".
author Tormod Volden <debian.tormod@gmail.com>
date Sun, 24 Nov 2013 16:16:56 +0100
parents 0d9bbad2d398
children 10b30c9e9443
files level1/modules/kernel/krn.asm
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/level1/modules/kernel/krn.asm	Sun Nov 24 16:13:49 2013 +0100
+++ b/level1/modules/kernel/krn.asm	Sun Nov 24 16:16:56 2013 +0100
@@ -255,7 +255,7 @@
 *GetMem   ldd   MaxMem+1,u		I don't think this exists for Level1 RG
 *         clrb
 *         cmpd  <D.MLIM			starts as $EE00
-*         bra   L0158
+*         bcc   L0158
 *         std   <D.MLIM
 GetMem   equ   *			Initially I tried GetMem clra
 *                                       that is redundant. See last line. RG