Ivsemu/src
Marcus Vinicius de Carvalho ab5914b269 Simple modulo optimization
As we are using a base 2 for our RHS modulo operator, we changed that for a bitwise and operator, which is faster.

In other words, if the RHS of the modulo operator (i.e. LHS % RHS) is a base 2, we can write "LHS & (RHS -1)", which will yield the same results but with a faster processing time.
2021-08-01 12:49:28 +08:00
..
chip_8 Simple modulo optimization 2021-08-01 12:49:28 +08:00
chip_8.rs Modularized chip-8 2021-07-28 03:14:42 +08:00
main.rs Modularized chip-8 2021-07-28 03:14:42 +08:00