mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-06-09 12:51:01 +00:00
25 lines
255 B
C++
25 lines
255 B
C++
//
|
|
// Created by Melefo on 11/02/2020.
|
|
//
|
|
|
|
#include "APU/APU.hpp"
|
|
|
|
namespace ComSquare::APU
|
|
{
|
|
int APU::NOP()
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
int APU::SLEEP()
|
|
{
|
|
this->_state = Sleeping;
|
|
return 3;
|
|
}
|
|
|
|
int APU::STOP()
|
|
{
|
|
this->_state = Stopped;
|
|
return 3;
|
|
}
|
|
} |