Changeset 61547 in vbox for trunk/src/VBox/ValidationKit/bootsectors/bs3kit
- Timestamp:
- Jun 7, 2016 4:38:07 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107886
- Location:
- trunk/src/VBox/ValidationKit/bootsectors/bs3kit
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/Makefile.kmk
r61533 r61547 383 383 bs3kit-pp32_INSTTYPE = none 384 384 bs3kit-pp32_DEFS = TMPL_MODE=BS3_MODE_PP32 385 bs3kit-pp32_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) 385 bs3kit-pp32_SOURCES = $(VBOX_BS3KIT_MODE_SOURCES) \ 386 bs3-first-init-all-pp32.asm 386 387 387 388 # The 16-bit BS3Kit library for 32-bit paged protected kernel+tss. -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-first-init-all-pp32.asm
r61539 r61547 1 1 ; $Id$ 2 2 ;; @file 3 ; BS3Kit - First Object, calling 32-bit p rotected mode main() after full init.3 ; BS3Kit - First Object, calling 32-bit paged protected mode main() after full init. 4 4 ; 5 5 … … 33 33 34 34 extern NAME(Bs3InitAll_rm) 35 extern NAME(Bs3SwitchToP E32_rm)35 extern NAME(Bs3SwitchToPP32_rm) 36 36 37 37 ;; Entry point. … … 51 51 ; Switch to 32-bit protected mode and call main. 52 52 ; 53 call NAME(Bs3SwitchToP E32_rm)53 call NAME(Bs3SwitchToPP32_rm) 54 54 BS3_SET_BITS 32 55 call _Main_p e3256 extern _Main_p e3255 call _Main_pp32 56 extern _Main_pp32 57 57 BS3_EXTERN_CMN Bs3Shutdown 58 58 call Bs3Shutdown
Note:
See TracChangeset
for help on using the changeset viewer.