summaryrefslogtreecommitdiffstats
path: root/Graphic_Equalizer/include/display.hch
blob: d10c8ed6151afc71719535e186dffcd87b8a9856 (plain)
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
/*! \file display.hch
 *
 * \section generic Display API
 *
 * \section project Project information.
 * Project Graphic Equalizer\n
 * \author 
 * \date 20041011
 * \version 0.1
 *
 * \section copyright Copyright
 * Copyright ©2004 Koninklijke Philips Electronics N.V. All rights reserved
 *
 * \section history Change history
 * 20041011: \n	Initial version
 *
 ********************************************************************/
 
#ifndef _DISPLAY_HCH
#define _DISPLAY_HCH 1



/*
 * Use defines to keep API generic
 */
#define display_run(VideoOut, ClockRate) PalVideoOutRun(VideoOut, ClockRate)
#define display_init(VideoOut) PalVideoOutEnable(VideoOut)



/*
 * Main display loop. This function never returns! It handles display output.
 */
extern macro proc display_main(RAM_BANK0, RAM_BANK1);

#else
#error "ERROR file display.hch multiple times included"
#endif /* --- _DISPLAY_HCH --- */