A GDB stub library for z88dk
Find a file
2022-12-31 22:09:30 +01:00
src Initial commit 2022-12-31 22:09:30 +01:00
.gitignore Initial commit 2022-12-31 22:09:30 +01:00
Makefile Initial commit 2022-12-31 22:09:30 +01:00
README.md Initial commit 2022-12-31 22:09:30 +01:00

z88dk-gdbstub

A GDB stub library for z88dk z80 projects. You must implement the following functions in your program for it to compile:

  • unsigned char gdb_getDebugChar (void)
  • void gdb_putDebugChar (unsigned char ch)

Other functions will also be needed to do anything useful.

See The template project for TI 8x calculators for an example implementation.