Correct warning in 6502 implementation.

Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
This commit is contained in:
Adrian.Conlon 2017-08-23 22:30:58 +01:00
parent 2c99e09618
commit 12c9125e9b

View File

@ -331,7 +331,7 @@ namespace EightBit {
}
}
uint8_t AM_01(int bbb, uint8_t value) {
void AM_01(int bbb, uint8_t value) {
switch (bbb) {
case 0b000:
AM_IndexedIndirectX(value);