hwsetup.h

来自「C语言编写的监控中心终端程序。基于GPRS上传收发数据功能」· C头文件 代码 · 共 39 行

H
39
字号
#ifndef	__HWSETUP_H
#define	__HWSETUP_H

enum framebuf_config {
    MEM_CONFIG_MP3,
    MEM_CONFIG_GRAPH,
    MEM_CONFIG_LORES,
    MEM_CONFIG_LORESN,
    MEM_CONFIG_SVCD_LORES,
    MEM_CONFIG_SVCD_LORESN,
    MEM_CONFIG_HIRES,
    MEM_CONFIG_DIGEST,
    MEM_CONFIG_GAME,
    MEM_CONFIG_CDDA,
    MEM_CONFIG_PREVIEW
};

void			audio_setclk(int);
void			config_framebuffer(int);
void			preset_framebuffer(int);
void			config_memory(int);
void			select_iop_Fs(UINT16);

#define	config_memory_mp3()	config_memory(MEM_CONFIG_MP3)

#define	RESET_AGDC		(1 << 7)
#define	RESET_MMU		(1 << 6)
#define	RESET_VLD		(1 << 5)
#define	RESET_OGT		(1 << 4)
#define	RESET_VPP		(1 << 3)
#define	RESET_AUD		(1 << 2)
#define	RESET_CD		(1 << 1)
#define	RESET_IR		(1 << 0)

void			reset_modules(UINT32);
void			hwsetup(void);

#endif	__HWSETUP_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?