Port of cosmo-engine to TempleOS
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
I64 cosmo_rand() |
|
{ |
|
//FIXME |
|
return RandU64 % 0xffff; |
|
} |
|
|
|
I64 Cond(Bool cond, I64 true, I64 false) |
|
{ |
|
if (cond) |
|
return true; |
|
return false; |
|
}
|
|
|