]> git.sur5r.net Git - cc65/commitdiff
Added hint on how to quit program.
authorOliver Schmidt <ol.sc@web.de>
Sun, 12 Jun 2016 21:48:19 +0000 (23:48 +0200)
committerOliver Schmidt <ol.sc@web.de>
Sun, 12 Jun 2016 21:48:19 +0000 (23:48 +0200)
samples/ascii.c

index fd293e21306d3aeda32eac5459dd633eacf4e2ef..0d191c966c5b515d2ff46da376185704640c11c4 100644 (file)
@@ -58,7 +58,7 @@ int main(void) {
 
         /* This prompt fits on the VIC-20's narrow screen.
         */
-        PRINT("Type characters to see\r\ntheir hexadecimal code\r\nnumbers:\r\n\n");
+        PRINT("Type characters to see\r\ntheir hexadecimal code\r\nnumbers - 'Q' quits:\r\n\n");
         screensize(&width, &height);    /* get the screen's dimensions */
         width /= 6;                     /* get number of codes on a line */
         cursor(true);