summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-01-03 09:01:18 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-01-03 09:01:18 +0000
commit415aebd2bd98af36894581ff61d089dc4113e08b (patch)
tree9a1074244654f572b98817c3205396894b63a062 /src/lib
parent422ccce762edc5e328f07ffa42ada1d72676e616 (diff)
Rewrote sbrkout driver based on schematics:
* XTAL-based timing * Correct video timing * Full memory map * Correct memory usage ("zero page" RAM is shared with videoram) * Removed all input hacks * Fixed interrupt generation * Connected coin counters * Added save state support Also fixed incorrect dependency in cdrom.c.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/util/cdrom.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/util/cdrom.c b/src/lib/util/cdrom.c
index 865fcd31286..6fb3f44aebb 100644
--- a/src/lib/util/cdrom.c
+++ b/src/lib/util/cdrom.c
@@ -24,10 +24,16 @@
***************************************************************************/
#define VERBOSE (0)
+#if VERBOSE
#define LOG(x) do { if (VERBOSE) logerror x; } while (0)
+#else
+#define LOG(x)
+#endif
void CLIB_DECL logerror(const char *text,...);
+
+
/***************************************************************************
TYPE DEFINITIONS
***************************************************************************/