This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Created by DhilipSiva | |
| //Free to modify and use | |
| main() | |
| { | |
| char far *videoMemory = 0xB8000000; | |
| char *helloString = "Hello World"; | |
| int stringLength = 11; //length of "Hello World" is 11 | |
| int count; | |
| for(count = 0; count < stringLength; count++) |