Search found 7 matches
- Fri May 02, 2025 5:46 am
- Forum: Hints and Tips
- Topic: Question on Opcode behaviour
- Replies: 19
- Views: 776447
Re: Question on Opcode behaviour
I may have found another error in MAME's disassembler. 0f5b: 10 4a DECA 0x4A is DECA, but 0x104A is DECD instead. On a 6809 $104a is a nonstandard version of DECA. $4a is officially undefined on opcode page 2. On a 6309 $104a is DECD Mame's debugger will show the correct disassembly depending on wh...
- Fri May 02, 2025 5:37 am
- Forum: Hints and Tips
- Topic: Question on Opcode behaviour
- Replies: 19
- Views: 776447
Re: Question on Opcode behaviour
I've also noticed (by comparing my disassembly with MAME's) that I'm showing opcode 0xCD as LDQ Immediate (according to the instruction set) while MAME shows: 31f0: cd XHCF Could it be that XHCF is used if its prefixed by $10 or $11? $CD on a 6809 is XHCF. $CD on a 6309 is a LDQ Immediate. Mame has...
- Fri May 02, 2025 5:31 am
- Forum: Hints and Tips
- Topic: Question on Opcode behaviour
- Replies: 19
- Views: 776447
- Tue Apr 29, 2025 3:55 am
- Forum: Hints and Tips
- Topic: Question on Opcode behaviour
- Replies: 19
- Views: 776447
Re: Question on Opcode behaviour
The 6309 indexed addressing mode opcodes added to the existing 6809 indexed addressing modes without changing how the 6809 codes worked.
- Tue Apr 22, 2025 4:38 am
- Forum: Hints and Tips
- Topic: Question on Opcode behaviour
- Replies: 19
- Views: 776447
Re: Question on Opcode behaviour
I originally wanted to disassemble the mnemonics a little differently, but I couldn't get buy in from the other MAMEDevs.
Code: Select all
10 7a 09 00 DEC_2 $0900
10 11 7a 09 00 DEC_23 $0900
10 11 10 7a 09 00 DEC_232 $0900
- Tue Apr 22, 2025 4:23 am
- Forum: Hints and Tips
- Topic: Question on Opcode behaviour
- Replies: 19
- Views: 776447
Re: Question on Opcode behaviour
That's my doing. I took the behavior described here: https://github.com/hoglet67/6809Decoder/wiki/Undocumented-6809-Behaviours#undocumented-page-2-opcodes https://github.com/hoglet67/6809Decoder/wiki/Undocumented-6809-Behaviours#undocumented-page-3-opcodes https://github.com/hoglet67/6809Decoder/wik...
- Mon Dec 06, 2021 5:19 pm
- Forum: Dragon General
- Topic: XRoar 1.0 released
- Replies: 49
- Views: 146486
Re: XRoar 1.0 released
I'm a little confused with the terms soft and hard reset. I just did some testing on my CoCo 3 with a Multi-pak. I had a SDC in slot 4, Clowns & Balloons in slot 1, and the switch to slot 4. I powered on the machine and I got the SDC-DOS BASIC prompt. I typed in POKE &HFF7F,0 and it immediately boot...