• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef BASEMEM_PACKET_H
2 #define BASEMEM_PACKET_H
3 
4 FILE_LICENCE ( GPL2_OR_LATER );
5 
6 #include <realmode.h>
7 
8 /** Maximum length of base memory packet buffer */
9 #define BASEMEM_PACKET_LEN 1514
10 
11 /** Base memory packet buffer */
12 extern char __bss16_array ( basemem_packet, [BASEMEM_PACKET_LEN] );
13 #define basemem_packet __use_data16 ( basemem_packet )
14 
15 #endif /* BASEMEM_PACKET_H */
16