David Gonzalez Martin 074465a7e5 Implement 'or'
2024-05-25 17:40:16 -06:00

8 lines
157 B
Plaintext

fn [cc(.c)] main [export] () s32 {
>a: s32 = 0xffff;
>b: s32 = 0xffff0000;
>c: s32 = 0xffffffff;
>result = c - (a | b);
return result;
}