mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
18 lines
257 B
C++
Executable file
18 lines
257 B
C++
Executable file
struct Noise {
|
|
unsigned length_counter;
|
|
|
|
Envelope envelope;
|
|
|
|
uint4 period;
|
|
unsigned period_counter;
|
|
|
|
bool short_mode;
|
|
uint15 lfsr;
|
|
|
|
void clock_length();
|
|
uint8 clock();
|
|
|
|
void power();
|
|
void reset();
|
|
void serialize(serializer&);
|
|
} noise;
|