24 lines
341 B
C
24 lines
341 B
C
|
//
|
||
|
// MODULE : DEBUG.H
|
||
|
// PURPOSE : Debugging functions
|
||
|
// AUTHOR : JBS Yadawa
|
||
|
// CREATED : 7/20/96
|
||
|
//
|
||
|
//
|
||
|
// Copyright (C) 1996 SGS-THOMSON Microelectronics
|
||
|
//
|
||
|
//
|
||
|
// REVISION HISTORY :
|
||
|
//
|
||
|
// DATE :
|
||
|
//
|
||
|
// COMMENTS :
|
||
|
//
|
||
|
|
||
|
#ifndef __DEBUG_H__
|
||
|
#define __DEBUG_H__
|
||
|
#include "stdefs.h"
|
||
|
#define DPF(x) DebugPrint(x)
|
||
|
// #define DPF(x)
|
||
|
#endif
|