Exercise5.1 b) if ( A <= B ) then Max = B else Max = A mov ax, A cmp ax, B ; if (A <= B) then Jnl Lab1 mov Max, B ; Max = B jump Lab2 Lab1 ; else mov Max, A ; Max = A Lab2