more complete fs impl

This commit is contained in:
2026-03-30 18:05:16 +02:00
parent 2b72e47ba5
commit 6086208879
4 changed files with 294 additions and 36 deletions

View File

@@ -382,6 +382,8 @@ int main(int argc, char **argv) {
nn_Component *eepromCard = nn_createVEEPROM(u, "eeprom", &veeprom, &nn_defaultEEPROMs[3]);
nn_Component *managedfs = ncl_createFilesystem(u, "mainFS", "data/OpenOS", &nn_defaultFilesystems[3], true);
size_t ramTotal = 0;
ramTotal += nn_ramSizes[5];
@@ -426,6 +428,7 @@ restart:;
nn_mountComponent(c, ocelotCard, -1);
nn_mountComponent(c, eepromCard, 0);
nn_mountComponent(c, managedfs, 1);
while(true) {
if(WindowShouldClose()) break;