X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/5e8ac5e02a09140e97d56a9d5313504dfa31282d..7535ca1b43f9320f0de3c49fc7a12560a5022a7c:/avr/strerror.c diff --git a/avr/strerror.c b/avr/strerror.c index 4fdc63d..199504a 100644 --- a/avr/strerror.c +++ b/avr/strerror.c @@ -10,17 +10,18 @@ static const FLASH char * const FLASH error_strings[] = { FSTR("Unknown error"), - FSTR("Not enough memory"), - 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 */ };