I was learning and reading about Segment:Offset conversion and all that. Our teacher told us how to calculate the absolute address from S:O which is pretty simple (*10 + Offset). He asked us to convert S:O to absolute, I told him that wasn't possible and he asked us to do 'further research' on it.
I've read about the whole overlapping segments and how many S:O can point to the same absolute address. I also read an older question here: Calculate Segment:Offset from absolute address
The answer says it's not possible using only the absolute address, and that makes perfect sense.
Then there's this question here: finding physical address in 8086 microprocessor
Where he simply just splits the absolute address, adds zeros and makes it S:O. Now I'm confused, is this correct? He simply used the absolute address.
This isn't a homework question or anything. I just want to confirm that my answer is correct i.e. not possible. The question is simply 08F1:0100
which I can translate to 09010
. If I were to try to get at least 1 or 2 valid S:O addresses, what should I do?