]> git.sur5r.net Git - cc65/commitdiff
New get_tv function by Stefan Haubenthal.
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 10 Apr 2008 20:20:26 +0000 (20:20 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 10 Apr 2008 20:20:26 +0000 (20:20 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3832 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/nes.sgml
include/nes.h

index a3ac79a685d8bc6952babf3d889d66b962cd8862..d4e6a3facf7207d7c65f017dafa5e8fb7b2c2e93 100644 (file)
@@ -69,6 +69,7 @@ Programs containing NES specific code may use the <tt/nes.h/ header file.
 
 <itemize>
 <item>waitvblank
+<item>get_tv
 </itemize>
 
 
index 7a2f3e176fca1a4771afc3f82a9334b93463d4a7..48c5418e0c82f7a9eb63c3dc23838a25b498c221 100644 (file)
 #define COLOR_LIGHTBLUE        0x0E
 #define COLOR_GRAY3            0x0F
 
+/* Return codes of get_tv */
+#define TV_NTSC         0
+#define TV_PAL          1
+#define TV_OTHER        2
+
 
 
 void __fastcall__ waitvblank (void);
 /* Wait for the vertical blanking */
 
+unsigned char __fastcall__ get_tv (void);
+/* Return the video mode the machine is using. */
+
 
 
 /* End of nes.h */