vfpsubarch.h

来自「realview22.rar」· C头文件 代码 · 共 24 行

H
24
字号
/*
 * vfpsubarch.h
 * Definitions for the VFP Sub-architecture porting layer
 * Copyright (C) ARM Limited, 2002. All rights reserved.
 */

typedef struct _VFP_Computation_Description _VFP_Computation_Description;

#define MAXCOUNT 16
struct _VFP_Computation_Description {
    uint32 count;
    uint32 flags;
    struct {
        uint32 op;
        uint32 op_dbg;
    } desc[MAXCOUNT];
};

EXTERN_C int _VFP_Is_Compute_Exception(uint32 instr);
EXTERN_C int _VFP_Collect_Trap_Description(
    _VFP_Computation_Description *desc, uint32 instr);

/* end of vfpsubarch.h */

⌨️ 快捷键说明

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