Text UI: Difference between revisions

[unchecked revision][unchecked revision]
Content deleted Content added
Line 11:
 
== Video Memory ==
In textVGA mode 03, the linear text buffer is located in physical at 0xB8000. Reading and writing to and from this address will provide direct manipulation of on screen text. To access a particular character on the screen from X and Y coordinates is simple using the following formula:
 
position = (y_position * characters_per_line) + x_position;