mirror of
https://github.com/ipxe/ipxe
synced 2025-12-27 01:52:39 +03:00
Add FILE_LICENCE declarations to almost all files that make up the various standard builds of gPXE.
16 lines
378 B
C
16 lines
378 B
C
#ifndef BASEMEM_PACKET_H
|
|
#define BASEMEM_PACKET_H
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
#include <realmode.h>
|
|
|
|
/** Maximum length of base memory packet buffer */
|
|
#define BASEMEM_PACKET_LEN 1514
|
|
|
|
/** Base memory packet buffer */
|
|
extern char __bss16_array ( basemem_packet, [BASEMEM_PACKET_LEN] );
|
|
#define basemem_packet __use_data16 ( basemem_packet )
|
|
|
|
#endif /* BASEMEM_PACKET_H */
|