/sddbg

debugger for the sdcc compiler

Primary LanguageC++OtherNOASSERTION

SDDBG

This is a fork of Ricky White's ec2drv, with support for a homegrown ti-cc debugger and many fixes and improvments

New features include:

  • built in dap-server
  • full cmake built system
  • improved step logic
  • register inspection
  • call stack inspection
  • automatic disassembly of uncovered code

Building

Before building, fetch the git submodules with:

cd <path-to-sddbg>
git submodule update --init

Generate the build files & build the project:

cd <path-to-sddbg>
mkdir build
cd build
cmake .. # alternatively cmake .. -GNinja
make