]> git.sur5r.net Git - cc65/commitdiff
Added 40xx and SuperPET chips
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 17 Jul 2005 09:59:18 +0000 (09:59 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 17 Jul 2005 09:59:18 +0000 (09:59 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3527 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/pet.h

index 3ad4dd1904058fee474227f4e8631fb2f6d9471b..66a3c752bff5aa9df32d9422e5ca0995d2894e42 100644 (file)
 #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)
+
 
 
 /*****************************************************************************/