Last change
on this file was
e16e8f2,
checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago
|
bootstuff
|
-
Property mode set to
100644
|
File size:
378 bytes
|
Line | |
---|
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 */ |
---|
Note: See
TracBrowser
for help on using the repository browser.