-
Overall, great tutorial, thank you very much. I do have one concern
In the renderer, we have this code.
```
if (x > this.cols) {
x -= this.cols;
} else if (x < 0) {
x += this.col…
-
Hi, I wrote a simple chip8 emulator on a platform called lowres.nx and I'm trying to test it with your test roms. I got everything ok with **test_opcode.ch8**, but one error with **BC_test.ch8** (Erro…
-
Firstly, I must thank you for your test rom. It helps me confident with my implementation.
Although, I have something to ask:
I ran your test rom (https://github.com/Skosulor/c8int/blob/master/tes…
-
### Describe the bug
Okay it's a bit weird.
I have a project in `C:\Projets\Burgwar\BurgWar` on my computer, and I noticed that sometimes a `C:\Projets\Burgwar\BurgW` appeared, with a .xmake folde…
-
I don't have a minimal example yet, but I want to log this issue before I forget. Feel free to message me for more info if this isn't enough to reproduce.
The following code:
```
pub fn step(em…
-
I haven't been able to find a minimal example, but this block [here](https://github.com/QuinnWilton/gleam-chip8/blob/master/src/chip8/emulator.gleam#L368) is generating the following Erlang:
```erl…
-
I'm currently developing a chip8 emulator as a learning experience and one of the instructions requires the generation of a random number between 0 and 255 (inclusive).
I am using `u8` types to rep…
-
Since it support much more features and architectures rather than pure capstone.
## Architectures
i386, x86-64, ARM, MIPS, PowerPC, SPARC, RISC-V, SH, m68k, AVR, XAP,
System Z, XCore, CR16, HPP…
-
This is based on the chip8 emulator tutorial on *(link removed)*
$ make
linking c8-master.elf
c:/devkitpro/devkita64/bin/../lib/gcc/aarch64-none-elf/9.2.0/../../../../aarch64-none-elf/bin/ld.exe:…
-
Hi: Thank you so much for creating the libchip8 emulator 😀
I have ported your emulator to run on PineTime Smart Watch as an exercise for free open-source IoT Education.
Here's the article...
h…