X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fv6809.h;fp=src%2Fv6809.h;h=a34c1d1f1d974db8675b6a88e2a8b37766a0dd79;hb=b4e8ef6c5282d8763d7559370c007fa4c1219a54;hp=5a54fe68f4d415f744dcaecfcaef9f5e0308f0cf;hpb=af27a070d6a36e5590c5d24ba255300825c25cf9;p=stargem2 diff --git a/src/v6809.h b/src/v6809.h index 5a54fe6..a34c1d1 100755 --- a/src/v6809.h +++ b/src/v6809.h @@ -35,16 +35,16 @@ struct V6809REGS { - uint16 pc; // 6809 PC register + uint16 pc; // 6809 PC register uint16 x; // 6809 X index register uint16 y; // 6809 Y index register uint16 s; // 6809 System stack pointer uint16 u; // 6809 User stack pointer - uint8 cc; // 6809 Condition Code register + uint8 cc; // 6809 Condition Code register uint8 a; // 6809 A register uint8 b; // 6809 B register - uint8 dp; // 6809 Direct Page register - uint32 clock; // 6809 clock + uint8 dp; // 6809 Direct Page register + uint32 clock; // 6809 clock //uint32 _reserved;// uint8 (* Fetch)(uint16&); // Address of uint8 fetch routine uint8 (* RdMem)(uint16); // Address of uint8 read routine void (* WrMem)(uint16, uint8); // Address of uint8 write routine