I'm building a project with CosmOS and am having trouble with how I would go about making a method for user-based apps, my first instinct making a language specific to the OS, is there a method for loading programs at run time that I've just missed?
Asked
Active
Viewed 145 times
1 Answers
0
You would most likley need to create everything from scratch. I recommend using bytecode for now because cosmos doesn't allow you to directly run asm code. Here is an example of running bytecode:
for (int I = 0; I < Bytes.Length; I++)
{
switch (Bytes[I]
{
case 0x0: // close app
return;
}
}

ouflak
- 2,458
- 10
- 44
- 49

Terminal.cs
- 13
- 5