types.h

来自「open source bios with linux platform, ve」· C头文件 代码 · 共 44 行

H
44
字号
/* tag: data types for forth engine * * This file is autogenerated by types.sh. Do not edit! * * Copyright (C) 2003 Patrick Mauritz, Stefan Reinauer * * See the file "COPYING" for further information about * the copyright and warranty status of this work. */#ifndef __TYPES_H#define __TYPES_H#include <stdint.h>/* endianess */#include "autoconf.h"/* cell based types */typedef int64_t       cell;typedef uint64_t     ucell;typedef __int128_t   dcell;typedef __uint128_t ducell;#define bitspercell	(sizeof(cell)<<3)#define bitsperdcell	(sizeof(dcell)<<3)#define BITS		64/* size named types */typedef unsigned char   u8;typedef unsigned short u16;typedef unsigned int   u32;typedef unsigned long  u64;typedef char  		s8;typedef short		s16;typedef int		s32;typedef long		s64;#endif

⌨️ 快捷键说明

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