summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/ods68302/include/debugport.h
blob: c79f4aa2e4b519e5e39e5df5f95ea369e9d07f92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*****************************************************************************/
/*
  Debug Port Support

*/
/*****************************************************************************/

#if !defined(_DEBUGPORT_H_)
 #define _DEBUGPORT_H_

#if __cplusplus
extern "C"
{
#endif

  /* normall automatic, only need when re-initialising */
  void debug_port_initialise(void);

  unsigned char debug_port_status(const unsigned char status);
  unsigned char debug_port_in(void);
  void debug_port_out(const unsigned char character);

  void debug_port_write(const char *buffer);
  void debug_port_write_buffer(const char *buffer, unsigned int size);

  void debug_port_write_hex_uint(const unsigned int value);
  void debug_port_write_hex_ulong(const unsigned long value);

   /*
    * special banner message for CPU specific boot code,
    * initialises the debug port
    */
  void debug_port_banner(void);
  void debug_port_printf(const char *format, ...);

#if __cplusplus
}
#endif

#endif