source: buchla-68k/include/debug.h@ c65a0e2

Last change on this file since c65a0e2 was c65a0e2, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Added RAM files.

  • Property mode set to 100644
File size: 466 bytes
Line 
1/*
2 =============================================================================
3 debug.h -- some simple debug trace macros
4 Version 1 -- 1988-03-03 -- D.N. Lynx Crowe
5 =============================================================================
6*/
7
8#ifdef DEBUGGER
9#define DB_ENTR(mod) DB_Entr(mod)
10#define DB_EXIT(mod) DB_Exit(mod)
11#define DB_CMNT(mod) DB_Cmnt(mod)
12#else
13#define DB_ENTR(mod)
14#define DB_EXIT(mod)
15#define DB_CMNT(mod)
16#endif
Note: See TracBrowser for help on using the repository browser.