mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
8 lines
174 B
C++
Executable file
8 lines
174 B
C++
Executable file
void Input::serialize(serializer &s) {
|
|
s.integer((unsigned&)port1);
|
|
s.integer((unsigned&)port2);
|
|
|
|
s.integer(latchdata);
|
|
s.integer(counter1);
|
|
s.integer(counter2);
|
|
}
|