From 38fe19a1a325c5c5ec1daf4113b11003408a48f1 Mon Sep 17 00:00:00 2001 From: cpg Date: Fri, 9 Jul 2004 19:56:55 +0000 Subject: [PATCH] get_ostype() was split into get_ostype() and get_tv() a long time ago... git-svn-id: svn://svn.cc65.org/cc65/trunk@3152 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- testcode/lib/atari/ostype.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/testcode/lib/atari/ostype.c b/testcode/lib/atari/ostype.c index 33f23f0f0..a3569ec3d 100644 --- a/testcode/lib/atari/ostype.c +++ b/testcode/lib/atari/ostype.c @@ -1,7 +1,7 @@ /* - * testprogram for get_ostype() function + * testprogram for get_ostype() and get_tv() functions * - * 17-Jul-2000, cpg@aladdin.de + * 09-Jul-2004, cpg@aladdin.de */ #include @@ -9,17 +9,18 @@ int main(void) { - unsigned int t; + unsigned int t, v; unsigned char palntsc; unsigned char *rev; unsigned char minor; unsigned char c; t = get_ostype(); /* get computer type */ + v = get_tv(); /* get tv system */ + + palntsc = (v == AT_PAL); - palntsc = (t & AT_OS_PALNTSC) >> 3; minor = (t & AT_OS_TYPE_MINOR) >> 5; - if (palntsc != AT_OS_PAL) palntsc = 0; /* 1 - PAL; 0 - NTSC */ switch(t & AT_OS_TYPE_MAIN) { case AT_OS_UNKNOWN: default: -- 2.39.5