Printing To Screen: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
Solar (talk | contribs)
Line 27: Line 27:
If you have a pointer to video memory and want to write a string, here is how you might do it;
If you have a pointer to video memory and want to write a string, here is how you might do it;


<source lang="c">
<pre>
// note this example will always write to the top
// note this example will always write to the top
// line of the screen
// line of the screen
Line 39: Line 39:
}
}
}
}
</pre>
</source>


This simply cycles through each character in the string, and copies it to the appropriate place in video memory.
This simply cycles through each character in the string, and copies it to the appropriate place in video memory.


==Printing Integers==
==Printing Integers==