X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdis6808.cpp;fp=src%2Fdis6808.cpp;h=42fecdaf073afa08001dd3c3e9eae2ccfd8ed8e2;hb=8dafbf94c7bc84dae635f9dabfc9be5424e49e68;hp=23ddf7a31b8276139fe2883dfaed374055055958;hpb=e3ad811139308bfe8a818cf5e42e7553785fea82;p=stargem2 diff --git a/src/dis6808.cpp b/src/dis6808.cpp old mode 100755 new mode 100644 index 23ddf7a..42fecda --- a/src/dis6808.cpp +++ b/src/dis6808.cpp @@ -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; } -