mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
21 lines
344 B
C++
Executable file
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");
|
|
}
|
|
|
|
}
|