; extern void clear_ships_on_screen(void); ; optimized bzero() replacement. ; the real bzero() in cc65-2.19 is 129 bytes long. ; it's optimized for speed (has an unrolled loop) and shares ; code with memset(). we can do it in a lot less code here, ; especially since we only need to clear exactly 20 bytes ; located at a known absolute address. ; in C, we could write: for(i=0; i