Changeset 31 for trunk/BOOTCODE/REGULAR/OTHER.ASM
- Timestamp:
- Jan 13, 2013, 8:15:35 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BOOTCODE/REGULAR/OTHER.ASM
r30 r31 363 363 mov si, offset Configuration 364 364 xor bx, bx 365 mov cx, 5 ; Total of 5 Sectors 365 366 ; Changed from 5 to calculated 367 ; Fixes issue: #2987 -- "air-boot doesn't remember drive letter" 368 mov cx, (MBR_BackUpMBR - Configuration) / 2 ; Size of the ab-configuration 369 ; TASM does not evaluate expression above corrrectly. 370 ; Listing shows correct opcode but generated opcode has imm. word byteswapped. 371 ; Casting to byte also does not work (overflow). 372 ; So we swap back here -- must be removed in JWasm version !! 373 xchg ch,cl 374 366 375 mov dx, CFG_CheckConfig 367 376 mov CFG_CheckConfig, bx
Note:
See TracChangeset
for help on using the changeset viewer.