1
0
mirror of https://github.com/cc65/cc65.git synced 2025-04-05 13:37:17 +00:00

Fixed dangling spaces

This commit is contained in:
mc78 2024-08-26 01:50:41 +02:00
parent 404af7500c
commit c5f3a7e690
2 changed files with 2 additions and 2 deletions

View File

@ -322,6 +322,6 @@ void __fastcall__ cbm_closedir (unsigned char lfn);
int __fastcall__ cbm_set_working_screen(unsigned char screen_hi);
/* Sets the address of the working screen (no switching of viewport) to screen_hi*0x100.
Checks, if the screen_hi is a multiple of 4. If not, fails with EXIT_FAILURE. */
/* End of cbm.h */
#endif

View File

@ -28,7 +28,7 @@ _cbm_set_working_screen:
jsr PLOT ; Get cursor position ...
clc
jsr PLOT ; ... and set it again to update address of char below cursor with new hi-byte
lda #0
tax
rts