2007-07-02 18:33:41 +01:00
|
|
|
#ifndef BASEMEM_PACKET_H
|
|
|
|
|
#define BASEMEM_PACKET_H
|
|
|
|
|
|
2015-03-02 11:54:40 +00:00
|
|
|
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
2009-05-01 15:41:06 +01:00
|
|
|
|
2007-07-02 18:33:41 +01:00
|
|
|
#include <realmode.h>
|
|
|
|
|
|
|
|
|
|
/** Maximum length of base memory packet buffer */
|
|
|
|
|
#define BASEMEM_PACKET_LEN 1514
|
|
|
|
|
|
|
|
|
|
/** Base memory packet buffer */
|
2007-07-16 13:22:12 +01:00
|
|
|
extern char __bss16_array ( basemem_packet, [BASEMEM_PACKET_LEN] );
|
2007-07-02 18:33:41 +01:00
|
|
|
#define basemem_packet __use_data16 ( basemem_packet )
|
|
|
|
|
|
|
|
|
|
#endif /* BASEMEM_PACKET_H */
|