mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
341 B
23 lines
341 B
//
|
|
// 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
|