nella

Results 5 issues of nella

### Issue description When working on the `bitwise-shift-execution` assignment I've opted (as many will probably do) to declare a func3 section for `SLL` and `SRL` instructions (`F3_SLL`, `F3_SRL`) - this...

Hi, I believe I've discovered a bug in the Linux target, specifically, there seems to be an issue with how function calls with more than 5 parameters behave. I've attached...

Is there a built-in way of disabling the gizmo scaling based on projection matrix size (ie. screen size)? I can see that the `mScreenFactor` variable controls the overall scale of...

More than 5 args don't work on Linux: ```c i32 main() { printf("%d %d %d %d %d %d %d\n", 1, 2, 3, 4, 5, 6, 7); ret 0; } ```

### `printf` isn't being called in functions with no parameters ```rs i32 test() { printf("test\n"); ret 0; } i32 main() { test(); ret 0; } ```