6502: Debugging the Sieve of Eratosthenes with the VS Code db65xx Debugging Extension

12/17/2022 Update: db65xx now handles normal debug stepping within C files. I successfully ran my C-based Hello World example project in my VS Code db65xx Debugging Extension but needed a more rigorous test of C-based debugging. I often go to Rosetta Code to look for code samples to test on my various builds and find …

65C02: Running Functional Tests in the VS Code db65xx Debugging Extension

I’ve created a project to run Klaus Dormann’s functional tests in my VS Code db65xx debugging extension. Three test builds are available, one for the 6502, one for the 65C02 extended functions, and one testing the decimal mode. Here are some screenshots. Note that the 6502 and decimal mode tests can also be run on …

65816: Build 4 – Current Status – 7/15/2022

Build 4 – Current Specification As of 7/15/2022, Build 4 has tested successfully with: Both 65C02 and 65C816 up to 10 MHz where I started to get display glitches 524k memory. Current configuration: ~457k RAM ($0000-$F7FF, $20000-$7FFFF), 55 ns ~67k ROM ($F800-$1FEFF), 70 ns 256 bytes I/O ($1FF00-$1FFFF) 65C22 VIA ($1FF10, shift register dedicated to …

65816: Build 4 – Troubleshooting 4 – Testing a Different Address Decoder

Off and on throughout my Build 4 troubleshooting journey I kept wondering if the PLD was the underlying issue. While a PLD is handy for making after the fact changes to your build’s memory map, it also has a handy feature I hadn’t thought of before. Since the PLD brings control input and output signals …