X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/df728b3578bfba42632b2a3bd7250fba70776b22..d66348b4fb147eb01c30aa9b3a8904ce6c59a4c1:/avr/strerror.c?ds=sidebyside diff --git a/avr/strerror.c b/avr/strerror.c index a4d2a67..199504a 100644 --- a/avr/strerror.c +++ b/avr/strerror.c @@ -10,18 +10,18 @@ static const FLASH char * const FLASH error_strings[] = { FSTR("Unknown error"), - FSTR("Not enough memory"), - FSTR("Interrupt"), - FSTR("Bus timeout"), - FSTR("Unexpected argument"), - FSTR("Invalid disk number"), - FSTR("Disk already attached"), - FSTR("Disk not attached"), - FSTR("Error opening file"), - FSTR("File already attached to other drive"), - FSTR("CPU is running"), - FSTR("Invalid argument"), - FSTR("Unexpected EOF"), + FSTR("Not enough memory"), /* 101 */ + FSTR("Interrupt"), /* 102 */ + FSTR("Bus timeout"), /* 103 */ + FSTR("Unexpected argument"), /* 104 */ + FSTR("Invalid disk number"), /* 105 */ + FSTR("Disk already attached"), /* 106 */ + FSTR("Disk not attached"), /* 107 */ + FSTR("Error opening file"), /* 108 */ + FSTR("File already attached to other drive"), /* 109 */ + FSTR("CPU is running"), /* 110 */ + FSTR("Invalid argument"), /* 111 */ + FSTR("Unexpected EOF"), /* 112 */ };