1
0
mirror of https://github.com/specht/champ.git synced 2024-06-09 04:29:29 +00:00

fixed BCD?

This commit is contained in:
Michael Specht 2018-02-07 10:20:09 +01:00
parent 011472fe3c
commit f61368fe2e

10
champ.c
View File

@ -197,12 +197,6 @@ uint8_t pop()
void set_flag(int which, int value)
{
// TODO: Implement decimal mode (BCD)
// if ((which == DECIMAL_MODE) && value)
// {
// printf("Decimal flag not implemented yet!");
// exit(1);
// }
cpu.flags &= ~which;
if (value)
cpu.flags |= which;
@ -258,7 +252,7 @@ void adc(uint8_t value)
{
set_flag(CARRY, 0);
if ((cpu.a & 0xf) > 0x9)
cpu.a += 0x60;
cpu.a += 0x06;
if ((cpu.a & 0xf0) > 0x90)
{
cpu.a += 0x60;
@ -279,7 +273,7 @@ void sbc(uint8_t value)
set_flag(CARRY, 0);
cpu.a -= 0x66;
if ((cpu.a & 0xf) > 0x9)
cpu.a += 0x60;
cpu.a += 0x06;
if ((cpu.a & 0xf0) > 0x90)
{
cpu.a += 0x60;