Changeset 76 for trunk/bootcode/regular
- Timestamp:
- Apr 8, 2017, 12:26:11 AM (8 years ago)
- Location:
- trunk/bootcode/regular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/regular/other.asm
r67 r76 348 348 INT13X_Supported: 349 349 350 IFNDEF ReleaseCode351 ret352 ENDIF353 354 350 355 351 ; -
trunk/bootcode/regular/partmain.asm
r73 r76 595 595 call PART_SearchFileSysHiddenID ; Put on =STEALTH= 596 596 mov bptr es:[di+LocBRPT_SystemID], al 597 IFDEF ReleaseCode 598 call DriveIO_SavePartition ; Saves Partition-Table 599 ENDIF 597 call DriveIO_SavePartition ; Saves Partition-Table 600 598 ret 601 599 PART_HidePartition EndP … … 1096 1094 1097 1095 1098 IFDEF ReleaseCode1099 1096 ; 1100 1097 ; Save configuration on HDD boots (save CFG_PartLast) 1101 1098 ; 1102 1099 call DriveIO_SaveConfiguration 1103 ENDIF1104 1100 1105 1101 … … 1201 1197 1202 1198 1203 IFDEF ReleaseCode1204 1199 ; 1205 1200 ; Save the Partition Table. 1206 1201 ; 1207 1202 call DriveIO_SavePartition ; Saves the Partition-Table [SAVE] 1208 ENDIF1209 1203 1210 1204 … … 1343 1337 call DriveIO_LoadPartition ; Load Primary Partition Table 1344 1338 call PART_MarkFirstGoodPrimary 1345 1346 IFDEF ReleaseCode1347 1339 call DriveIO_SavePartition ; Saves the Partition-Table 1348 ENDIF1349 1340 1350 1341 … … 2208 2199 ; # JUMP TO THE PBR LOADER CODE # 2209 2200 ; ############################### 2210 IFDEF ReleaseCode 2211 db 0EAh 2212 dw StartBasePtr 2213 dw StartBaseSeg 2214 ENDIF 2201 db 0EAh 2202 dw StartBasePtr 2203 dw StartBaseSeg 2215 2204 2216 2205 -
trunk/bootcode/regular/partscan.asm
r57 r76 222 222 223 223 call PARTSCAN_ScanPartition 224 IFDEF ReleaseCode 224 225 225 call DriveIO_SavePartition 226 ENDIF 226 227 227 call PARTSCAN_ScanPartitionForExtended 228 228 jc PSSDFP_LoadThisPartition 229 229 230 PSSDFP_InvalidPartition: 230 231 ret … … 304 305 ; Clearing the boot-flags on other disks would prevent booting them 305 306 ; from the BIOS. (TRAC ticket #6) 306 cmp dl, 080h ; See if this is boot-disk 307 cmp dl, 080h ; See if this is boot-disk 307 308 jne PSSP_Skip_Clear_BootFlag ; Nope, skip clear flag 308 309 and byte ptr [si+LocBRPT_Flags], 7Fh ; Reset the Active-Flag … … 704 705 PCCTP_CompareFailed: 705 706 mov ch, ah 706 ; Default Flags hinzufgen...707 ; Insert Default Flags... 707 708 mov cl, LocIPT_DefaultFlags 708 709
Note:
See TracChangeset
for help on using the changeset viewer.