lsnes/nes/interface/interface.cpp
2013-05-03 17:47:34 +03:00

21 lines
344 B
C++
Executable file

#include <nes/nes.hpp>
namespace NES {
Interface *interface = nullptr;
void Interface::videoRefresh(const uint16_t *data) {
}
void Interface::audioSample(const int16_t sample) {
}
int16_t Interface::inputPoll(bool port, unsigned device, unsigned id) {
return 0;
}
void Interface::message(const string &text) {
print(text, "\n");
}
}