'How would creating run time applications for CosmOS based operating systems work
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?
Solution 1:[1]
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;
}
}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | ouflak |
