0

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?

1 Answers1

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