📄 cpuarch.h
字号:
/***************************************** Copyright (c) 2001-2002 Sigma Designs, Inc. All Rights Reserved Proprietary and Confidential *****************************************//* This file is part of the boot loader *//* * cpuarch.h * * basic definitions for compatibility between different CPU architectures */#ifndef __BOOTLOADER_CPU_ARCH_H#define __BOOTLOADER_CPU_ARCH_H/* * Basic type definitions * for compatibility between system */typedef unsigned char uint8_t;typedef unsigned short uint16_t;typedef unsigned int uint32_t;/* * Endian */#undef CONFIG_BIGENDIAN#define CONFIG_LITTLEENDIAN#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -