Hi I am taking up a course on 16-bit assembly programming using TASM and I would like to know if when the value inside a bracket or the address becomes negative, would it become an error or proceed accordingly?
e.g. BP=94F7h, SI=0EF89h MOV AX,[BP+SI-0DFC1h]
the sum of BP and SI would be greater than 4-bits so another question comes into my mind, would I discard the 5th bit before proceeding to subtracting the displacement or still consider it?