Ignore:
Timestamp:
Jul 3, 2020, 7:19:17 PM (4 years ago)
Author:
coas-nagasima
Message:

ASP3, TINET, mbed を更新

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/asp3_dcre/arch/arm_gcc/common/core_kernel.h

    r321 r429  
    66 *  Copyright (C) 2000-2003 by Embedded and Real-Time Systems Laboratory
    77 *                              Toyohashi Univ. of Technology, JAPAN
    8  *  Copyright (C) 2004-2016 by Embedded and Real-Time Systems Laboratory
     8 *  Copyright (C) 2004-2019 by Embedded and Real-Time Systems Laboratory
    99 *              Graduate School of Information Science, Nagoya Univ., JAPAN
    1010 *
     
    5353
    5454/*
     55 *  ターゲット定義のタスク属性
     56 */
     57#define TA_FPU          UINT_C(0x08)    /* FPUレジスタをコンテキストに含める */
     58
     59/*
    5560 *  スタックの型
    5661 *
     
    6267 *  CPU例外ハンドラ番号の数
    6368 */ 
    64 #define TNUM_EXCNO              6
     69#define TNUM_EXCNO              7
    6570
    6671/*
    6772 *  CPU例外ハンドラ番号の定義
    6873 */
    69 #define EXCNO_UNDEF             0
    70 #define EXCNO_SVC               1
    71 #define EXCNO_PABORT    2
    72 #define EXCNO_DABORT    3
    73 #define EXCNO_IRQ               4
    74 #define EXCNO_FIQ               5
     74#define EXCNO_UNDEF             UINT_C(0)               /* 未定義命令 */
     75#define EXCNO_SVC               UINT_C(1)               /* スーパバイザコール */
     76#define EXCNO_PABORT    UINT_C(2)               /* プリフェッチアボート */
     77#define EXCNO_DABORT    UINT_C(3)               /* データアボート */
     78#define EXCNO_IRQ               UINT_C(4)               /* IRQ割込み */
     79#define EXCNO_FIQ               UINT_C(5)               /* FIQ割込み */
     80#define EXCNO_FATAL             UINT_C(6)               /* フェイタルデータアボート */
    7581
    7682#ifndef TOPPERS_MACRO_ONLY
Note: See TracChangeset for help on using the changeset viewer.