struct spkr_softc {
device_t sc_dev;
device_t sc_wsbelldev;
int sc_octave; /* currently selected octave */
int sc_whole; /* whole-note time at current tempo, in ticks */
int sc_value; /* whole divisor for note time, quarter note = 1 */
int sc_fill; /* controls spacing of notes */
bool sc_octtrack; /* octave-tracking on? */
bool sc_octprefix; /* override current octave-tracking state? */
char *sc_inbuf;
/* attachment-specific hooks */
void (*sc_tone)(device_t, u_int, u_int);
u_int sc_vol; /* volume - only for audio skpr */
};