Ravenslofty / prussia

Prussia - a Rust PS2 SDK.
Other
105 stars 6 forks source link

Using llvm_asm is nightly instead of stable #7

Closed mscofield0 closed 3 years ago

mscofield0 commented 3 years ago

I read some comments in the code and you seem to want to be able to run it on the stable toolchain. Maybe change that?

Ravenslofty commented 3 years ago

asm! is not supported for the versions of MIPS that the PS2 uses, thus we have to use llvm_asm! instead. I don't think upstream cares very much about the PS2 as an architecture, and anything else that might use old MIPS versions like this is hopelessly obsolete...

mscofield0 commented 3 years ago

Any way to link it separately as a file?