Jay Oster
Jay Oster
The disassembly for both C and Rust functions looks fine. C just allocates more stack space (unnecessarily) but they are otherwise identical. Part of the problem here is that you...
> ``` > 00000000 : > 0: 67bdfff0 daddiu sp,sp,-16 > 4: ffbf0008 sd ra,8(sp) > 8: 0c000000 jal 0 > c: 00000000 nop > 10: dfbf0008 ld ra,8(sp) >...
> well, when I didn't panic rustc :) This project is pinned to an old nightly Rust: https://github.com/rust-console/cargo-n64/blob/72019a04c80519c762015c3b5cb0572e20f4617a/rust-toolchain#L1 I can't keep it up to date as frequently as I would...
@gogo2464 The test command would run unit tests, like `cargo test` does for testing on the host environment.
For some more context, there is a project from the embedded-wg that does something very similar with qemu and docker. We won't be using qemu, of course, but the overall...
I think there is a lot of work to do here. It will need a Nintendo 64 emulator that can do some basic IPC with stdout/stderr (at a minimum) to...
@gogo2464 No, that is a test for the `r64drive` project. It does have some code that would be useful for running a test ROM on N64 hardware, though. It can...
The time investment will be much too high. Any decent emulator needs hundreds or thousands of person-hours put into them before they become even partially usable.
This should have been closed by #1455
I vote for leveraging Hyper. (As much as necessary. I assume gevent would only use its HTTP/2 parser, and perhaps a minimal subset of its runtime protocol support.) HTTP/2 in...