]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/clock.cpp
This commit was generated by cvs2svn to compensate for changes in r8,
[virtualjaguar] / src / clock.cpp
index ec2ac8a9b86b955425f2053d6b1ffed72b3d84d0..8ca3bc1d2f9d3a5f7c71a7e160f6d1bdf029c018 100644 (file)
@@ -1,76 +1,41 @@
-#include "include/jaguar.h"
-
-
-//////////////////////////////////////////////////////////////////////////////
-//
-//////////////////////////////////////////////////////////////////////////////
 //
+// Clock handler
 //
+// by cal2
+// GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS)
+// Cleanups by James L. Hammons
 //
-//////////////////////////////////////////////////////////////////////////////
+
+#include "jaguar.h"
+
+
 void clock_init(void)
 {
        clock_reset();
 }
-//////////////////////////////////////////////////////////////////////////////
-//
-//////////////////////////////////////////////////////////////////////////////
-//
-//
-//
-//////////////////////////////////////////////////////////////////////////////
+
 void clock_reset(void)
 {
 }
-//////////////////////////////////////////////////////////////////////////////
-//
-//////////////////////////////////////////////////////////////////////////////
-//
-//
-//
-//////////////////////////////////////////////////////////////////////////////
+
 void clock_done(void)
 {
 }
-//////////////////////////////////////////////////////////////////////////////
-//
-//////////////////////////////////////////////////////////////////////////////
-//
-//
-//
-//////////////////////////////////////////////////////////////////////////////
+
 void clock_byte_write(uint32 offset, uint8 data)
 {
 }
-//////////////////////////////////////////////////////////////////////////////
-//
-//////////////////////////////////////////////////////////////////////////////
-//
-//
-//
-//////////////////////////////////////////////////////////////////////////////
+
 void clock_word_write(uint32 offset, uint16 data)
 {
 }
-//////////////////////////////////////////////////////////////////////////////
-//
-//////////////////////////////////////////////////////////////////////////////
-//
-//
-//
-//////////////////////////////////////////////////////////////////////////////
+
 uint8 clock_byte_read(uint32 offset)
 {
-       return(0xff);
+       return 0xFF;
 }
-//////////////////////////////////////////////////////////////////////////////
-//
-//////////////////////////////////////////////////////////////////////////////
-//
-//
-//
-//////////////////////////////////////////////////////////////////////////////
+
 uint16 clock_word_read(uint32 offset)
 {
-       return(0xffff);
+       return 0xFFFF;
 }