mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-21 06:30:31 +00:00
17 lines
352 B
C++
17 lines
352 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <mos6502.h>
|
|
#include <Bus.h>
|
|
|
|
namespace EightBit {
|
|
class Ricoh2A03 final : public MOS6502 {
|
|
public:
|
|
Ricoh2A03(Bus& bus);
|
|
virtual ~Ricoh2A03() = default;
|
|
|
|
protected:
|
|
virtual uint8_t sub(uint8_t operand, int borrow) noexcept final;
|
|
virtual uint8_t add(uint8_t operand, int carry) noexcept final;
|
|
};
|
|
} |