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

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

Started to rework include files.

  • Property mode set to 100644
File size: 464 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#pragma once
9
10#ifdef DEBUGGER
11#define DB_ENTR(mod) DB_Entr(mod)
12#define DB_EXIT(mod) DB_Exit(mod)
13#define DB_CMNT(mod) DB_Cmnt(mod)
14#else
15#define DB_ENTR(mod)
16#define DB_EXIT(mod)
17#define DB_CMNT(mod)
18#endif
Note: See TracBrowser for help on using the repository browser.