Skip to content

Commit ec70a2a

Browse files
Update README.md
1 parent 76b86a4 commit ec70a2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

11_exceptions_groundwork/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ let big_addr: u64 = 3 * 1024 * 1024 * 1024;
257257
unsafe { core::ptr::read_volatile(big_addr as *mut u64) };
258258
```
259259

260-
Finally, this triggers our exception code, because we try to read from a virtual address for which no address translations have been installed. Remember, we only installed identity-mapped page tables for the first 1 GiB of address space in lesson `0C`.
260+
Finally, this triggers our exception code, because we try to read from a virtual address for which no address translations have been installed. Remember, we only installed identity-mapped page tables for the first 1 GiB of address space in lesson `0D`.
261261
After the exception handler is finished, it returns to the first instruction
262262
after the memory read that caused the exception.
263263

0 commit comments

Comments
 (0)