mirror of https://github.com/xemu-project/xemu.git
19 lines
328 B
C
19 lines
328 B
C
![]() |
/*
|
||
|
* M25P80 SFDP
|
||
|
*
|
||
|
* Copyright (c) 2020, IBM Corporation.
|
||
|
*
|
||
|
* This code is licensed under the GPL version 2 or later. See the
|
||
|
* COPYING file in the top-level directory.
|
||
|
*/
|
||
|
|
||
|
#ifndef HW_M25P80_SFDP_H
|
||
|
#define HW_M25P80_SFDP_H
|
||
|
|
||
|
/*
|
||
|
* SFDP area has a 3 bytes address space.
|
||
|
*/
|
||
|
#define M25P80_SFDP_MAX_SIZE (1 << 24)
|
||
|
|
||
|
#endif
|