Port fat_io_lib, mount atasd0mp1 as sys:

This commit is contained in:
2025-11-19 15:50:00 +01:00
parent 5d77974586
commit 0cc78a7247
35 changed files with 7071 additions and 7 deletions

View File

@ -16,6 +16,7 @@
#define E_RESOURCEAVAIL -12
#define E_SPAWNERROR -13
#define E_NOTYET -14
#define E_MOUNTERR -15
#if !defined(__ASSEMBLER__)
@ -36,6 +37,7 @@ static const char *_ERROR_STRINGS[] = {
"Resource already available",
"Process spawn error",
"Data isn't ready yet",
"File system mount error",
};
#define ERRSTRING_INDEX(ioh) ((size_t)((ioh) < 0 ? (ioh) * (-1) : (ioh)))