lsnes rr2-β24
[lsnes.git] / src / emulation / sky / demo.hpp
blob9c0ac72a309b88cc5795a32c9305342e8f139271
1 #ifndef _skycore__demo__hpp__included__
2 #define _skycore__demo__hpp__included__
4 #include <cstdint>
5 #include <cstdlib>
6 #include <vector>
8 namespace sky
10 struct demo
12 demo();
13 demo(const std::vector<char>& demo, bool skyroads_fmt);
14 uint16_t fetchkeys(uint16_t old, uint32_t lpos, uint32_t frame);
15 private:
16 uint8_t buffer[65536];
19 #endif