1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Added 40xx and SuperPET chips

git-svn-id: svn://svn.cc65.org/cc65/trunk@3527 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2005-07-17 09:59:18 +00:00
parent c218639977
commit cde729b636

View File

@ -63,6 +63,14 @@
#include <_6522.h>
#define VIA (*(struct __6522*)0xE840)
/* All models from 40xx and above */
#include <_6545.h>
#define CRTC (*(struct __6545)0xE880)
/* SuperPET only */
#include <_6551.h>
#define ACIA (*(struct __6551*)0xEFF0)
/*****************************************************************************/