/usr/share/z88dk/include/debug.h is in z88dk-data 1.8.ds1-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /*
* Debugging Routines
*
* $Id: debug.h,v 1.1 2002/06/10 10:14:07 stefano Exp $
*/
#ifndef __DEBUG_H__
#define __DEBUG_H__
#define MYSELF = 0xFFFF
/* Disassembles a line; returns the address for the next line
if MYSELF, disassembles the current program location */
extern unsigned int __LIB__ disz80(unsigned int address, unsigned int lines);
/* Dump on screen: if MYSELF address is given, displays #count stack words
and returns the current SP value (dump excluded), otherwise dumps memory
bytes and returns the address reached */
extern unsigned int __LIB__ dump(unsigned int address,unsigned int count);
#endif
|