Not cool...
Anyway, what you will want to do is create something that takes the ASCII position of a letter, and put it on the console screen. How might one make order of this?
Well as you can tell, the Console screen has these inputs
Char <- The ASCII code of the character, a Wired Keyboard outputs those.
CharX <- The X position on the screen of the character.
CharY <- The Y position on the screen of the character.
CharParam <- The background color for the Character.
Clk <- "Refresh"
Reset <- Reset.
So with that said, you will need to write the Character to the correct X and Y coordinate.
On the Console screen, the maximum characters in a line, is I believe 30.
So,
Code:
If Keyboard > 32 -> CharX+=1,CharY=CharY,Char=Keyboard;
If CharX >= 30 -> CharY=CharY+1,CharX=0,Char=Char;
If Reset==1 -> CharX=0,CharY=0;
CharParam=9999
Note that the code doesn't have inputs and outputs, I leave that to you.
Have fun.
Bookmarks