Changeset 76 for trunk/bootcode/setup
- Timestamp:
- Apr 8, 2017, 12:26:11 AM (8 years ago)
- Location:
- trunk/bootcode/setup
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/setup/main.asm
r65 r76 59 59 or ax, ax 60 60 jz SSTSI_NoItemPack 61 add si, LocMENU_LenOfItemPack ; ItemPack bergehen61 add si, LocMENU_LenOfItemPack ; Add ItemPack size 62 62 SSTSI_NoItemPack: 63 63 add si, LocMENU_LenOfMenuPtrBlock ; Skip Ptr-Block (+3 deshalb, weil danach INC!) … … 88 88 mov al, [SETUP_KeysOnEntry] 89 89 test al, Keys_Flags_EnterSetup 90 IFDEF ReleaseCode91 90 jz SCES_NoEnterSETUP 92 ENDIF93 91 SCES_ForceEnter: 94 92 call SETUP_Main … … 672 670 ENDIF 673 671 674 ; Zeichnet die Men Hilfe aufn Bildschirm672 ; Display the Help Menu 675 673 ; In: SI - Pointer to 4 HelpStrings... 676 674 ; Destroyed: None … … 1127 1125 add word ptr [CFG_LastTimeEditLow], 1 1128 1126 adc word ptr [CFG_LastTimeEditHi], 0 ; Update Time-Stamp 1129 IFDEF ReleaseCode 1130 call DriveIO_SaveConfiguration 1131 ENDIF 1127 call DriveIO_SaveConfiguration 1132 1128 mov byte ptr [SETUP_ExitEvent], 1 ; Exit and continue boot process 1133 1129 SEMSAES_UserAbort: … … 1145 1141 1146 1142 SEMEWS_DoThis: 1147 IFDEF ReleaseCode; Loads basic configuration...1148 call DriveIO_LoadConfiguration; This is *NOT* IPT nor HideConfig1149 ENDIF1143 ; Loads basic configuration... 1144 ; This is *NOT* IPT nor HideConfig 1145 call DriveIO_LoadConfiguration 1150 1146 mov byte ptr [SETUP_ExitEvent], 1 ; Exit and continue boot process 1151 1147 SEMEWS_UserAbort: -
trunk/bootcode/setup/part_set.asm
r67 r76 879 879 mov si, offset LVMSector 880 880 call LVM_UpdateSectorCRC 881 IFDEF ReleaseCode 882 883 ENDIF 881 882 call DriveIO_SaveLVMSector ; Save sector 883 884 884 jmp PSCPN_AllDone 885 885 … … 892 892 rep movsb ; Copy IPT-name to Boot-Record 893 893 pop si 894 IFDEF ReleaseCode 895 call DriveIO_SavePartition ; Saves Boot-Record 896 ENDIF 894 895 call DriveIO_SavePartition ; Saves Boot-Record 897 896 898 897 ; And reset VIBR-CRC, otherwise virus-warning and system-halt … … 1049 1048 mov cx, bx 1050 1049 call VideoIO_Locate 1051 mov al, 'µ'1050 mov al, 0b5h 1052 1051 call VideoIO_PrintSingleChar 1053 1052 … … 1081 1080 mov cx, CLR_PART_HIDE_WINDOW_BASE ; Lila on lila 1082 1081 call VideoIO_Color 1083 mov al, 'Æ'1082 mov al, 0c6h 1084 1083 call VideoIO_PrintSingleChar 1085 1084 ; --- Make Window-Footer - "State when booting..." at bottom right frame-line … … 1119 1118 ; inc cl 1120 1119 ; call MBR_Locate ; Location 16, HiddenX 1121 ; mov al, 'µ'1120 ; mov al, 0b5h 1122 1121 ; call MBR_PrintSingleChar 1123 1122 ; mov cx, 0E05h ; Yellow on Lila … … 1134 1133 ; mov cx, 0D05h ; Lila on lila 1135 1134 ; call MBR_Color 1136 ; mov al, 'Æ'1135 ; mov al, 0c6h 1137 1136 ; call MBR_PrintSingleChar 1138 1137 … … 1776 1775 mov cx, bx 1777 1776 call VideoIO_Locate 1778 mov al, 'µ'1777 mov al, 0b5h 1779 1778 call VideoIO_PrintSingleChar 1780 1779 … … 1808 1807 mov cx, CLR_PART_DL_WINDOW_BORDER2 ; Lila on lila 1809 1808 call VideoIO_Color 1810 mov al, 'Æ'1809 mov al, 0c6h 1811 1810 call VideoIO_PrintSingleChar 1812 1811 pop bx
Note:
See TracChangeset
for help on using the changeset viewer.