cpuarch.h
来自「ks8695 loader > > > > > &」· C头文件 代码 · 共 35 行
H
35 行
/***************************************** 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 + =
减小字号Ctrl + -
显示快捷键?