some important things

This commit is contained in:
2025-05-22 16:48:36 +02:00
parent f983b80e08
commit 307ba51fe6
2 changed files with 7 additions and 0 deletions

View File

@@ -11,6 +11,10 @@ typedef struct nn_computer {
size_t argc;
nn_value rets[NN_MAX_RETS];
size_t retc;
nn_architecture *arch;
nn_architecture *nextArch;
nn_architecture supportedArch[NN_MAX_ARCHITECTURES];
size_t supportedArchCount;
} nn_computer;
#endif