You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(11): Adapt exception demo for Raspberry Pi 5 memory layout
Adjusts the tutorial's exception-triggering demonstration to ensure it produces the intended translation fault on the Raspberry Pi 5.
The Pi 5 port uses a 128 GiB virtual address space to accommodate the RP1 peripheral map. The original tutorial's faulting address of 8 GiB falls within this space, which would lead to an identity mapping and a bus error instead of the desired translation fault.
This commit changes the faulting addresses to 129 GiB and 130 GiB, placing them outside the defined virtual address space. The exception handler is updated accordingly to catch the new 129 GiB address for the recoverable fault demonstration.
0 commit comments