Posted August 28, 200619 yr mov al, byte ptr ds:[address1]not almov byte ptr ds:[address1], alcmp al, 255je address2How to enshorten this code? Or any other way? Edited August 28, 200619 yr by The Old Pirate
August 28, 200619 yr trynot byte ptr ds:[address1]cmp byte ptr ds:[address1], 0FFhje address2Note that al is not modified at all by this codeZiggy
August 28, 200619 yr Author Thanks. AL doesn't matter, the point is to make other condition for the jump in each pass.
Create an account or sign in to comment