This commit was generated by cvs2svn to compensate for changes in r2,
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
This commit is contained in:
37
include/_antic.h
Normal file
37
include/_antic.h
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* _antic.h
|
||||
*
|
||||
* Freddy Offenga, 4/9/2000
|
||||
*
|
||||
* Internal include file, do not use directly.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef __ANTIC_H
|
||||
#define __ANTIC_H
|
||||
|
||||
|
||||
/* Define a structure with the antic register offsets */
|
||||
struct __antic {
|
||||
unsigned char dmactl; /* direct memory access control */
|
||||
unsigned char chactl; /* character mode control */
|
||||
unsigned char dlistl; /* display list pointer low-byte */
|
||||
unsigned char dlisth; /* display list pointer high-byte */
|
||||
unsigned char hscrol; /* horizontal scroll enable */
|
||||
unsigned char vscrol; /* vertical scroll enable */
|
||||
unsigned char unuse0; /* unused */
|
||||
unsigned char pmbase; /* msb of p/m base address */
|
||||
unsigned char unuse1; /* unused */
|
||||
unsigned char chbase; /* character base address */
|
||||
unsigned char wsync; /* wait for horizontal synchronization */
|
||||
unsigned char vcount; /* vertical line counter */
|
||||
unsigned char penh; /* light pen horizontal position */
|
||||
unsigned char penv; /* light pen vertical position */
|
||||
unsigned char nmien; /* non-maskable interrupt enable */
|
||||
unsigned char nmires; /* nmi reset/status */
|
||||
};
|
||||
|
||||
/* End of _antic.h */
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user