Add a TODO about panic messages to vga buffer post

This commit is contained in:
Philipp Oppermann
2018-05-22 19:55:38 +02:00
parent 6b5076bbfe
commit 38fe338029

View File

@@ -638,6 +638,10 @@ When we now insert `panic!("Some panic message");` in our `_start` function, we
So we know not only that a panic has occurred, but also the panic message and where in the code it happened. So we know not only that a panic has occurred, but also the panic message and where in the code it happened.
### Panic Messages
TODO
## Summary ## Summary
In this post we learned about the structure of the VGA text buffer and how it can be written through the memory mapping at address `0xb8000`. We created a Rust module that encapsulates the unsafety of writing to this memory mapped buffer and presents a safe and convenient interface to the outside. In this post we learned about the structure of the VGA text buffer and how it can be written through the memory mapping at address `0xb8000`. We created a Rust module that encapsulates the unsafety of writing to this memory mapped buffer and presents a safe and convenient interface to the outside.