1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Remove trailing spaces

This commit is contained in:
Dave Plummer 2024-01-29 20:31:04 -08:00
parent 08de848079
commit 20516923f6

View File

@ -14,8 +14,8 @@
typedef unsigned char byte;
extern void ClearScreen(void); // In subs.asm
extern void ScrollScreen(void);
extern void DrawCircle(void);
extern void ScrollScreen(void);
extern void DrawCircle(void);
extern void SetPixel(void);
extern void ClearPixel(void);
extern void DrawChar(void);
@ -121,7 +121,7 @@ void DrawText(char * psz)
else
{
c = *psz;
__asm__ ("ldx %v", cursorX);
__asm__ ("ldy %v", cursorY);
__asm__ ("lda %v", c);
@ -244,9 +244,9 @@ void DrawScreenMoire(int left, int top, int right, int bottom)
int main (void)
{
int i;
int c = 0;
int c = 0;
Demo();
@ -263,7 +263,7 @@ int main (void)
{
c = toupper(getch());
if (c != EOF)
CharOut(c);
CharOut(c);
}
// Clear the screen memory