mirror of
https://github.com/ipxe/ipxe
synced 2025-12-26 01:22:37 +03:00
Allow access to variables in .text16 as well as .data16. Chained
interrupt vectors, for example, will be easiest to handle if placed in .text16.
This commit is contained in:
@@ -10,9 +10,11 @@
|
||||
*
|
||||
*/
|
||||
|
||||
/* Access to variables in .data16, in a way compatible with librm */
|
||||
/* Access to variables in .data16 and .text16 in a way compatible with librm */
|
||||
#define __data16( variable ) variable
|
||||
#define __text16( variable ) variable
|
||||
#define __use_data16( variable ) variable
|
||||
#define __use_text16( variable ) variable
|
||||
|
||||
/* Copy to/from base memory */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user