Changeset 145 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2
- Timestamp:
- Mar 15, 2011, 11:28:17 AM (14 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/XTIDE_Universal_BIOS_Configurator_v2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Buffers.asm
r144 r145 68 68 69 69 ;-------------------------------------------------------------------- 70 ; Buffers_NewBiosWithSizeIn CXandSourceInAXhasBeenLoadedForConfiguration70 ; Buffers_NewBiosWithSizeInDXCXandSourceInAXhasBeenLoadedForConfiguration 71 71 ; Parameters: 72 72 ; AX: EEPROM source (FLG_CFGVARS_FILELOADED or FLG_CFGVARS_ROMLOADED) -
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/EEPROM.asm
r138 r145 49 49 inc bx 50 50 loop .CheckNextEepromSize 51 clc ; None of the supported EEPROMs are large enough 52 ret 51 ret ; Return with CF cleared (none of the supported EEPROMs are large enough) 53 52 ALIGN JUMP_ALIGN 54 53 .ReturnEepromSizeInCX: -
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/FlashMenu.asm
r123 r145 218 218 call Dialogs_DisplayErrorFromCSDX 219 219 stc 220 ret 221 ALIGN JUMP_ALIGN 220 ALIGN JUMP_ALIGN, ret 222 221 .ImageFitsInSelectedEeprom: 223 clc224 222 ret 225 223 -
trunk/XTIDE_Universal_BIOS_Configurator_v2/makefile
r82 r145 58 58 # Assembler preprocessor defines. # 59 59 ################################################################# 60 DEFINES = 60 DEFINES = 61 61 DEFINES_XT = ELIMINATE_CGA_SNOW 62 62 DEFINES_XTPLUS = USE_186 ELIMINATE_CGA_SNOW … … 77 77 IHEADERS = $(HEADERS:%=-I%) 78 78 79 # Path + target file to be buil d79 # Path + target file to be built 80 80 TARGET = $(BUILD_DIR)/$(PROG) 81 81 … … 111 111 ############################################ 112 112 113 .PHONY: all at xtplus xt clean 113 .PHONY: all at xtplus xt clean release 114 114 115 115 # Make clean debug and release versions 116 116 all: clean xt 117 @echo All build!117 @echo All done! 118 118 119 119 at: 120 120 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.$(EXTENSION)" 121 @echo AT version "$(TARGET)_at.$(EXTENSION)" buil d.121 @echo AT version "$(TARGET)_at.$(EXTENSION)" built. 122 122 123 123 xtplus: 124 124 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.$(EXTENSION)" 125 @echo XT plus version "$(TARGET)_xtp.$(EXTENSION)" buil d.125 @echo XT plus version "$(TARGET)_xtp.$(EXTENSION)" built. 126 126 127 127 xt: 128 128 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET).$(EXTENSION)" 129 @echo XT version "$(TARGET).$(EXTENSION)" buil d.129 @echo XT version "$(TARGET).$(EXTENSION)" built. 130 130 131 131 clean: 132 132 @$(RM) $(BUILD_DIR)\*.* 133 133 @echo Deleted "(*.*)" from "$(BUILD_DIR)/" 134 135 release: xt 136 @echo Compressing with UPX... 137 @upx -qq --8086 --ultra-brute $(TARGET).$(EXTENSION) 138 @echo Done! XT version is ready for release.
Note:
See TracChangeset
for help on using the changeset viewer.