00001 #ifndef BASEMEM_PACKET_H 00002 #define BASEMEM_PACKET_H 00003 00004 FILE_LICENCE ( GPL2_OR_LATER ); 00005 00006 #include <realmode.h> 00007 00008 /** Maximum length of base memory packet buffer */ 00009 #define BASEMEM_PACKET_LEN 1514 00010 00011 /** Base memory packet buffer */ 00012 extern char __bss16_array ( basemem_packet, [BASEMEM_PACKET_LEN] ); 00013 #define basemem_packet __use_data16 ( basemem_packet ) 00014 00015 #endif /* BASEMEM_PACKET_H */
1.5.7.1