mirror of
https://github.com/zoriya/ComSquare.git
synced 2025-12-19 21:55:11 +00:00
13 lines
191 B
C++
13 lines
191 B
C++
//
|
|
// Created by anonymus-raccoon on 2/13/20.
|
|
//
|
|
|
|
#include "../CPU.hpp"
|
|
|
|
namespace ComSquare::CPU
|
|
{
|
|
void CPU::SEP(uint24_t addr)
|
|
{
|
|
this->_registers.p.flags |= this->_bus->read(addr);
|
|
}
|
|
} |