]> Shamusworld >> Repos - stargem2/blobdiff - src/dis6808.cpp
Finally fixed problems with demo mode.
[stargem2] / src / dis6808.cpp
old mode 100755 (executable)
new mode 100644 (file)
index 23ddf7a..42fecda
@@ -1,9 +1,8 @@
 //
 // 6808 disassembler
 //
-// by James L. Hammons
-//
-// (c) 2004 Underground Software
+// by James Hammons
+// (C) 2004 Underground Software
 //
 
 #include "dis6808.h"
@@ -75,7 +74,6 @@ static char mnemonics[256][6] = {
   "EORB ","ADCB ","ORAB ","ADDB ","???  ","???  ","LDX  ","STX  "
 };
 
-
 //
 // Display bytes in mem in hex
 //
@@ -97,7 +95,6 @@ static void DisplayBytes(uint16_t src, uint32_t dst)
                WriteLog("   ");
 }
 
-
 //
 // Decode a 6808 instruction
 //
@@ -150,4 +147,3 @@ int Decode6808(uint16_t pc)
 
        return addr - pc;
 }
-