Changeset 55028 in vbox for trunk/src/VBox/VMM/VMMRC
- Timestamp:
- Mar 31, 2015 12:31:59 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMRC/VMMRC.mac
r54763 r55028 94 94 %ifdef ASM_FORMAT_PE 95 95 %macro VMMR0_SEG 1 96 [section .rdata$VMMR0.%1 align=1 ] 96 %ifndef DEFINED_VMMR0_SEG.%1 97 %define DEFINED_VMMR0_SEG.%1 1 98 [section .rdata$VMMR0.%1 align=1 ] 99 %else 100 [section .rdata$VMMR0.%1] 101 %endif 97 102 %endmacro 98 103 99 104 %macro VMMR0_CODE_SEG 1 100 [section .text$VMMR0.%1 align=16 ] 105 %ifndef DEFINED_VMMR0_CODE_SEG.%1 106 %define DEFINED_VMMR0_CODE_SEG.%1 1 107 [section .text$VMMR0.%1 align=16 ] 108 %else 109 [section .text$VMMR0.%1] 110 %endif 101 111 %endmacro 102 112 %endif
Note:
See TracChangeset
for help on using the changeset viewer.