You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

basemem_packet.h 386B

123456789101112131415
  1. #ifndef BASEMEM_PACKET_H
  2. #define BASEMEM_PACKET_H
  3. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  4. #include <realmode.h>
  5. /** Maximum length of base memory packet buffer */
  6. #define BASEMEM_PACKET_LEN 1514
  7. /** Base memory packet buffer */
  8. extern char __bss16_array ( basemem_packet, [BASEMEM_PACKET_LEN] );
  9. #define basemem_packet __use_data16 ( basemem_packet )
  10. #endif /* BASEMEM_PACKET_H */