tiny-linux-bootloader icon indicating copy to clipboard operation
tiny-linux-bootloader copied to clipboard

unreachable instruction

Open marler8997 opened this issue 6 years ago • 1 comments

Noticed a problem here (line 137)

    cmp edx, 127*512
    jl loader.part_2
    jz loader.finish

the line jz loader.finish will never be executed. It's not really a problem, it just might copy an an extra sector but not a big deal. In any case you can either remove this instruction or get the intended functionality by moving it into the block labeled loader.part_2.

marler8997 avatar May 31 '18 18:05 marler8997

nice find - thanks.

owenson avatar Jun 03 '18 19:06 owenson