mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
53dd513176
which included commits to RCS files with non-trunk default branches. git-svn-id: svn://svn.cc65.org/cc65/trunk@3 b7a2c559-68d2-44c3-8de9-860c34a00d81
56 lines
2.0 KiB
C
56 lines
2.0 KiB
C
/*
|
|
* _pokey.h
|
|
*
|
|
* Freddy Offenga, 4/9/2000
|
|
*
|
|
* Internal include file, do not use directly.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef __POKEY_H
|
|
#define __POKEY_H
|
|
|
|
|
|
/* Define a structure with the pokey register offsets */
|
|
struct __pokey_write {
|
|
unsigned char audf1; /* audio channel #1 frequency */
|
|
unsigned char audc1; /* audio channel #1 control */
|
|
unsigned char audf2; /* audio channel #2 frequency */
|
|
unsigned char audc2; /* audio channel #2 control */
|
|
unsigned char audf3; /* audio channel #3 frequency */
|
|
unsigned char audc3; /* audio channel #3 control */
|
|
unsigned char audf4; /* audio channel #4 frequency */
|
|
unsigned char audc4; /* audio channel #4 control */
|
|
unsigned char audctl; /* audio control */
|
|
unsigned char stimer; /* start pokey timers */
|
|
unsigned char skrest; /* reset serial port status reg. */
|
|
unsigned char potgo; /* start paddle scan sequence */
|
|
unsigned char unuse1; /* unused */
|
|
unsigned char serout; /* serial port data output */
|
|
unsigned char irqen; /* interrupt request enable */
|
|
unsigned char skctl; /* serial port control */
|
|
};
|
|
struct __pokey_read {
|
|
unsigned char pot0; /* paddle 0 value */
|
|
unsigned char pot1; /* paddle 1 value */
|
|
unsigned char pot2; /* paddle 2 value */
|
|
unsigned char pot3; /* paddle 3 value */
|
|
unsigned char pot4; /* paddle 4 value */
|
|
unsigned char pot5; /* paddle 5 value */
|
|
unsigned char pot6; /* paddle 6 value */
|
|
unsigned char pot7; /* paddle 7 value */
|
|
unsigned char allpot; /* eight paddle port status */
|
|
unsigned char kbcode; /* keyboard code */
|
|
unsigned char random; /* random number generator */
|
|
unsigned char unuse2; /* unused */
|
|
unsigned char unuse3; /* unused */
|
|
unsigned char serin; /* serial port input */
|
|
unsigned char irqst; /* interrupt request status */
|
|
unsigned char skstat; /* serial port status */
|
|
};
|
|
|
|
/* End of _pokey.h */
|
|
#endif
|
|
|