Add KBOOT.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* File: int_size.h
|
||||
*
|
||||
* Copyright (c) Freescale Semiconductor, Inc. All rights reserved.
|
||||
* See included license file for license details.
|
||||
*/
|
||||
#if !defined(_int_size_h_)
|
||||
#define _int_size_h_
|
||||
|
||||
namespace elftosb
|
||||
{
|
||||
//! Supported sizes of integers.
|
||||
typedef enum
|
||||
{
|
||||
kWordSize, //!< 32-bit word.
|
||||
kHalfWordSize, //!< 16-bit half word.
|
||||
kByteSize //!< 8-bit byte.
|
||||
} int_size_t;
|
||||
|
||||
}; // namespace elftosb
|
||||
|
||||
#endif // _int_size_h_
|
||||
Reference in New Issue
Block a user