Changeset 86686 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Oct 23, 2020 1:13:34 PM (4 years ago)
- Location:
- trunk/src/VBox/Devices/BiosCommonCode
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/BiosCommonCode/__I4D.asm
r82968 r86686 26 26 endif 27 27 28 ; MASM (ML.EXE) is used for PXE and no longer understands the .8086 directive. 29 ; WASM is used for the BIOS and understands it just fine. 30 ifdef __WASM__ 28 31 .8086 32 endif 29 33 30 34 … … 69 73 pop ax 70 74 rol eax, 16 75 ifdef __WASM__ 71 76 .8086 77 endif 78 72 79 else 73 80 call NeedToImplementOn8086__I4D -
trunk/src/VBox/Devices/BiosCommonCode/__I4M.asm
r82968 r86686 26 26 endif 27 27 28 ; MASM (ML.EXE) is used for PXE and no longer understands the .8086 directive. 29 ; WASM is used for the BIOS and understands it just fine. 30 ifdef __WASM__ 28 31 .8086 32 endif 29 33 30 34 _TEXT segment public 'CODE' use16 … … 67 71 pop ax 68 72 rol eax, 16 73 ifdef __WASM__ 69 74 .8086 75 endif 76 70 77 else 71 78 call NeedToImplementOn8086__I4M -
trunk/src/VBox/Devices/BiosCommonCode/__U4D.asm
r82968 r86686 22 22 public __U4D 23 23 24 ; MASM (ML.EXE) is used for PXE and no longer understands the .8086 directive. 25 ; WASM is used for the BIOS and understands it just fine. 26 ifdef __WASM__ 24 27 .8086 28 endif 29 25 30 26 31 if VBOX_BIOS_CPU lt 80386 … … 70 75 pop ax 71 76 rol eax, 16 77 ifdef __WASM__ 72 78 .8086 79 endif 73 80 else 74 81 ; -
trunk/src/VBox/Devices/BiosCommonCode/__U4M.asm
r82968 r86686 22 22 public __U4M 23 23 24 ; MASM (ML.EXE) is used for PXE and no longer understands the .8086 directive. 25 ; WASM is used for the BIOS and understands it just fine. 26 ifdef __WASM__ 24 27 .8086 28 endif 25 29 26 30 _TEXT segment public 'CODE' use16 … … 60 64 pop ax 61 65 rol eax, 16 66 ifdef __WASM__ 62 67 .8086 68 endif 63 69 64 70 else
Note:
See TracChangeset
for help on using the changeset viewer.