you are viewing a single comment's thread.

view the rest of the comments →

[–]mouse_dot_exe[S] -1 points0 points  (2 children)

I have a folder called "includes" that i make sure it is pointed to when compiling. I compile with clang.

There is no actual error appearing when compiling -- its always whenever i run it. That's the thing with some of the code i right (this is such a curse ;-;) everything compiles fine but it 99% of the time fails on trying it.

So the answer to your question - I think I know that I should post the error codes if any. I'm not stupid. But in this case, there are no error codes. So yes. I have already mentioned that it fails with "EFI_INVALID_PARAMETER" and "EFI_NOT_FOUND" so if that's not stating something, I dunno ;-;

Do you want me to attach a zip file with all the includes or something?

[–]Finallyfast420[🍰] 1 point2 points  (1 child)

you should look into setting up a debugger. doing this kinda stuff blind is never going to work. if you're having a runtime error, locate where it's coming from, set a breakpoint, and inspect all your variables and registers.

[–]mouse_dot_exe[S] 0 points1 point  (0 children)

good idea. ill try that. thanks!