craigthomas / Chip8Java

A Super Chip 8 emulator written in Java
MIT License
27 stars 2 forks source link

Implement `logic_quirks` #37

Open craigthomas opened 2 months ago

craigthomas commented 2 months ago

The --logic_quirks controls whether the F register is cleared after logic operations such as AND, OR, and XOR. By default, F is left undefined following these operations. With the logic_quirks flag turned on, F will always be cleared.