- Function
Output a character at a specific screen position.
- Header
- Declaration
void __fastcall__ cputcxy (unsigned char x, unsigned char y, char c);- Description
cputcxymoves the cursor to the given x/y position on the screen and outputs one character.- Limits
- Like all other
coniooutput functions,cputcxydistinguishes between\rand\n.- The function is only available as fastcall function, so it may only be used in presence of a prototype.
- Availability
cc65
- See also
- Example
None.