Changeset 84 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Boot/BootVars.asm
- Timestamp:
- Jan 14, 2011, 10:57:46 PM (14 years ago)
- google:author:
- krille_n_@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Boot/BootVars.asm
r3 r84 2 2 ; Project name : IDE BIOS 3 3 ; Created date : 1.4.2010 4 ; Last update : 12.4.2010 5 ; Author : Tomi Tilli 4 ; Last update : 14.1.2011 5 ; Author : Tomi Tilli, 6 ; : Krister Nordvall (optimizations) 6 7 ; Description : Functions to access BOOTVARS struct. 7 8 … … 66 67 cli ; Disable interrupts 67 68 LOAD_BDA_SEGMENT_TO ss, sp 68 eLSS sp, ss:BOOTVARS.dwPostStack 69 ; eLSS sp, ss:BOOTVARS.dwPostStack ; Expanded macro to remove 70 ; unneeded CLI instruction 71 %ifndef USE_386 72 mov sp, [ss:BOOTVARS.dwPostStack] 73 mov ss, [ss:BOOTVARS.dwPostStack+2] 74 %else 75 lss sp, [ss:BOOTVARS.dwPostStack] 76 %endif 69 77 sti ; Enable interrupts 70 78 jmp ax
Note:
See TracChangeset
for help on using the changeset viewer.