mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
21 lines
333 B
C
Executable File
21 lines
333 B
C
Executable File
/*
|
|
* Interface for the vimlac trace routines.
|
|
*/
|
|
|
|
#ifndef TRACE_H
|
|
#define TRACE_H
|
|
|
|
|
|
extern bool TraceFlag;
|
|
|
|
void trace_open(void);
|
|
void trace_close(void);
|
|
void trace_start_line(void);
|
|
void trace_end_line(void);
|
|
void trace_regs(void);
|
|
void trace_dregs(void);
|
|
void trace_cpu(char *fmt, ...);
|
|
void trace_dcpu(char *fmt, ...);
|
|
|
|
#endif
|