Changeset 97574 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- Nov 16, 2022 10:38:34 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154607
- Location:
- trunk/src/VBox/ValidationKit/bootsectors/bs3kit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/VBoxBs3Linker.cpp
r96407 r97574 330 330 the bootsector adjust it's bMaxHeads value when getting a 20h error 331 331 we end up with a garbaged image (seems somewhere in the BIOS/FDC it is 332 still treated as a double sided floppy and we get half the data we want and 333 with gaps). */ 332 still treated as a double sided floppy and we get half the data we want 333 and with gaps). 334 335 Similarly, if the size is 320KB or 360KB the FDC detects it as a double 336 sided 5.25" floppy with 40 tracks, while the BIOS keeps reporting a 337 1.44MB 3.5" floppy. So, just avoid those sizes too. */ 334 338 uint32_t cbOutput = ftell(pOutput); 335 if ( cbOutput == 512 * 8 * 40 /* 160kB 5"1/4 */ 336 || cbOutput == 512 * 9 * 40 /* 180kB 5"1/4 */) 339 if ( cbOutput == 512 * 8 * 40 * 1 /* 160kB 5"1/4 SS */ 340 || cbOutput == 512 * 9 * 40 * 1 /* 180kB 5"1/4 SS */ 341 || cbOutput == 512 * 8 * 40 * 2 /* 320kB 5"1/4 DS */ 342 || cbOutput == 512 * 9 * 40 * 2 /* 360kB 5"1/4 DS */ ) 337 343 { 338 344 static uint8_t const s_abZeroSector[512] = { 0 }; -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-bootsector.asm
r96407 r97574 58 58 ;; Halts on failure location. For debugging. 59 59 ;%define HLT_ON_FAILURE 1 60 61 ;; Enables saving of initial register state. 62 ;; Dropping this is useful for making more room for debugging. 63 %define BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE 60 64 61 65 … … 126 130 cli 127 131 132 %ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE 128 133 ; save the registers. 129 134 mov [cs:BS3_ADDR_REG_SAVE + BS3REGCTX.rax], ax 130 135 mov [cs:BS3_ADDR_REG_SAVE + BS3REGCTX.ds], ds 136 %endif 131 137 132 138 ; set up the DS segment reister so we can skip the CS prefix when saving more prefixes.. … … 134 140 mov ds, ax 135 141 142 %ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE 136 143 mov [BS3_ADDR_REG_SAVE + BS3REGCTX.rdi], di 137 144 mov di, BS3_ADDR_REG_SAVE … … 141 148 mov [di + BS3REGCTX.es], es 142 149 mov [di + BS3REGCTX.rbp], bp 150 %endif 143 151 144 152 ; set up the stack. … … 198 206 .is_80286: 199 207 CPU 286 208 %ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE 200 209 smsw [di + BS3REGCTX.cr0 - 0x70] 210 %endif 201 211 .pre_80286: 202 212 CPU 8086 213 %ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE 203 214 mov [di - 0x70 + BS3REGCTX.rbx], bx 204 215 mov [di - 0x70 + BS3REGCTX.rdx], dx 205 216 mov [di - 0x70 + BS3REGCTX.rsi], si 217 %endif 206 218 jmp .do_load 207 219 … … 209 221 CPU 386 210 222 .is_386plus: 223 %ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE 211 224 shr eax, 16 212 225 mov [di - 0x70 + BS3REGCTX.rax+2], ax … … 253 266 mov [di - 0x70 + BS3REGCTX.cr4], eax 254 267 .no_cr4: 268 %endif 255 269 ; Make sure caching is enabled and alignment is off. 256 270 mov eax, cr0 271 %ifdef BS3KIT_BOOTSECTOR_SAVE_INITIAL_STATE 257 272 mov [di - 0x70 + BS3REGCTX.cr0], eax 273 %endif 258 274 and eax, ~(X86_CR0_NW | X86_CR0_CD | X86_CR0_AM) 259 275 mov cr0, eax … … 396 412 mov ax, 0201h ; al=1 sector; ah=read function 397 413 int 13h 398 %ifndef HLT_ON_FAILURE414 %ifndef HLT_ON_FAILURE 399 415 jc .failure 400 %else416 %else 401 417 jnc .read_ok 402 418 cli 403 419 hlt 404 420 .read_ok: 405 %endif421 %endif 406 422 407 423 ; advance to the next sector/head/cylinder. … … 482 498 inc ch 483 499 jmp .the_load_loop 484 .read_one 500 .read_one: 501 %elifdef HLT_ON_FAILURE 502 je .read_one_ok 503 cli 504 hlt 505 .read_one_ok: 485 506 %else 486 507 jne .failure
Note:
See TracChangeset
for help on using the changeset viewer.