Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libsnes/bsnes/gameboy/interface/interface.cpp
2 views
1
#include <gameboy/gameboy.hpp>
2
3
namespace GameBoy {
4
5
Interface *interface = nullptr;
6
7
void Interface::lcdScanline() {
8
}
9
10
void Interface::joypWrite(bool p15, bool p14) {
11
}
12
13
void Interface::videoRefresh(const uint16_t *data) {
14
}
15
16
void Interface::audioSample(int16_t center, int16_t left, int16_t right) {
17
}
18
19
bool Interface::inputPoll(unsigned id) {
20
return false;
21
}
22
23
void Interface::message(const string &text) {
24
print(text, "\n");
25
}
26
27
}
28
29