The 80286 (1982) added a mode bit — PE, protection enable — that, when set, unlocked 24-bit addressing (16MB) and memory protection over the 8086’s 20-bit (1MB) real mode. It is the x86 cousin of the 65816’s XCE: one bit switches the machine into a wider world. The 286’s famous flaw was that it could enter protected mode but not cleanly leave it (you had to reset the CPU), a wrinkle the 386 fixed. Still, it is the same permutation move — a mode bit that widens the address space while the old mode stays underneath.
The demo shows the address range unlocked by the PE bit — 1MB in real mode, 16MB in protected mode: live demo
“More address space needs a new chip.” — the 286 unlocked 16MB with one mode bit, the 8086 still underneath. cited
A mode bit that opens sixteen megabytes with the old megabyte still beneath — x86’s first widening. mode bit
On the canonical compiler, the PE bit takes the address limit from 0xFFFFF (1MB) to 0xFFFFFF (16MB):