[445] | 1 | ####################################################################################################
|
---|
| 2 | # Makefile to build XTIDE Universal BIOS. #
|
---|
| 3 | # #
|
---|
| 4 | # Valid makefile targets are: #
|
---|
| 5 | # all Removes existing files and builds binary files in \Build #
|
---|
| 6 | # small Builds 8 kiB binaries only (without checksum) #
|
---|
[511] | 7 | # large Builds 12 kiB binaries only (without checksum) #
|
---|
[445] | 8 | # clean Removes all files from \Build #
|
---|
| 9 | # checksum* Builds all and then generates checksum byte to all binary files #
|
---|
| 10 | # strings* Compress src\Strings.asm to src\StringsCompressed.asm #
|
---|
[511] | 11 | # unused* Checks if there are any unused functions that can be removed to save space #
|
---|
[445] | 12 | # #
|
---|
| 13 | # * at the end of target name means that Perl is required for the job. #
|
---|
| 14 | # Build directory must be created manually if it does not exist. #
|
---|
| 15 | # #
|
---|
| 16 | # #
|
---|
| 17 | # Following modules can be included or excluded: #
|
---|
| 18 | # MODULE_8BIT_IDE Support for 8-BIT IDE cards like XTIDE #
|
---|
[505] | 19 | # MODULE_8BIT_IDE_ADVANCED Support for memory mapped and DMA based cards like JRIDE and XTCF #
|
---|
[445] | 20 | # MODULE_ADVANCED_ATA Native support for some VLB IDE controllers #
|
---|
[550] | 21 | # MODULE_COMPATIBLE_TABLES Support for ill behaving software that tries to access DPT directly #
|
---|
[445] | 22 | # MODULE_BOOT_MENU Boot Menu for selection of drive to boot from #
|
---|
| 23 | # MODULE_EBIOS Enhanced functions for accessing drives over 8.4 GB #
|
---|
| 24 | # MODULE_HOTKEYS Hotkey Bar to boot from any drive #
|
---|
| 25 | # MODULE_IRQ IDE IRQ support #
|
---|
| 26 | # MODULE_SERIAL Virtual hard disks using serial port #
|
---|
| 27 | # MODULE_SERIAL_FLOPPY Virtual floppy drives using serial port (requires MODULE_SERIAL) #
|
---|
| 28 | # MODULE_STRINGS_COMPRESSED Use compressed strings to save space #
|
---|
[567] | 29 | # MODULE_VERY_LATE_INIT Initialize on INT 13h if our INT 19h handler is not called #
|
---|
| 30 | # MODULE_POWER_MANAGEMENT Power Management support #
|
---|
[445] | 31 | # #
|
---|
| 32 | # Not modules but these affect the assembly: #
|
---|
| 33 | # ELIMINATE_CGA_SNOW Prevents CGA snowing at the cost of a few bytes #
|
---|
[522] | 34 | # RELOCATE_INT13H_STACK ** Relocates INT 13h stack to beginning of stolen conventional memory #
|
---|
[445] | 35 | # RESERVE_DIAGNOSTIC_CYLINDER Reserve one L-CHS cylinder for compatibility with old BIOSes #
|
---|
[543] | 36 | # DANGEROUS_DETECTION Scans Advanced Controllers from dangerous ports like mirrored PIC #
|
---|
[580] | 37 | # NO_ATAID_VALIDATION *** Excludes code that tries to ensure proper communication with drives #
|
---|
[445] | 38 | # USE_186 Use instructions supported by 80188/80186 and V20/V30 and later #
|
---|
[511] | 39 | # USE_286 Use instructions supported by 286 and later (defines USE_UNDOC_INTEL)#
|
---|
| 40 | # USE_386 Use instructions supported by 386 and later (defines USE_286) #
|
---|
[445] | 41 | # USE_AT Use features supported on AT and later systems (not available on XT) #
|
---|
[491] | 42 | # USE_UNDOC_INTEL Optimizations for Intel CPU:s - do NOT use on NEC V20/V30/Sony CPU:s #
|
---|
[445] | 43 | # #
|
---|
[522] | 44 | # ** AT Builds only (when USE_AT is defined) #
|
---|
[580] | 45 | # *** Use this only when certain known good drives are not being detected (eg WD Caviars) #
|
---|
[445] | 46 | ####################################################################################################
|
---|
[3] | 47 |
|
---|
| 48 | ###########################################
|
---|
| 49 | # Source files and destination executable #
|
---|
| 50 | ###########################################
|
---|
| 51 |
|
---|
| 52 | # Assembly source code file (*.asm):
|
---|
| 53 | SRC_ASM = Src/Main.asm
|
---|
| 54 |
|
---|
| 55 | # Program executable file name without extension:
|
---|
| 56 | PROG = ide
|
---|
| 57 |
|
---|
| 58 |
|
---|
| 59 | #######################################
|
---|
| 60 | # Destination and include directories #
|
---|
| 61 | #######################################
|
---|
| 62 |
|
---|
| 63 | # Directory where binary file will be compiled to
|
---|
| 64 | BUILD_DIR = Build
|
---|
| 65 |
|
---|
| 66 | # Subdirectories where included files are:
|
---|
| 67 | HEADERS = Inc/
|
---|
[363] | 68 | HEADERS += Inc/Controllers/
|
---|
[3] | 69 | HEADERS += Src/
|
---|
| 70 | HEADERS += Src/Handlers/
|
---|
| 71 | HEADERS += Src/Handlers/Int13h/
|
---|
[165] | 72 | HEADERS += Src/Handlers/Int13h/EBIOS/
|
---|
| 73 | HEADERS += Src/Handlers/Int13h/Tools/
|
---|
[392] | 74 | HEADERS += Src/Handlers/Int19h/
|
---|
[150] | 75 | HEADERS += Src/Device/
|
---|
| 76 | HEADERS += Src/Device/IDE/
|
---|
[238] | 77 | HEADERS += Src/Device/MemoryMappedIDE/
|
---|
[150] | 78 | HEADERS += Src/Device/Serial/
|
---|
[3] | 79 | HEADERS += Src/Initialization/
|
---|
[392] | 80 | HEADERS += Src/Initialization/AdvancedAta/
|
---|
| 81 | HEADERS += Src/Menus/
|
---|
| 82 | HEADERS += Src/Menus/BootMenu/
|
---|
[3] | 83 | HEADERS += Src/Libraries/
|
---|
| 84 | HEADERS += Src/VariablesAndDPTs/
|
---|
| 85 |
|
---|
[88] | 86 | # Subdirectories where library files are:
|
---|
| 87 | LIBS = ../Assembly_Library/Inc/
|
---|
| 88 | LIBS += ../Assembly_Library/Src/
|
---|
| 89 | LIBS += ../Assembly_Library/Src/Display/
|
---|
| 90 | LIBS += ../Assembly_Library/Src/File/
|
---|
| 91 | LIBS += ../Assembly_Library/Src/Keyboard/
|
---|
| 92 | LIBS += ../Assembly_Library/Src/Menu/
|
---|
| 93 | LIBS += ../Assembly_Library/Src/Menu/Dialog/
|
---|
| 94 | LIBS += ../Assembly_Library/Src/String/
|
---|
| 95 | LIBS += ../Assembly_Library/Src/Time/
|
---|
| 96 | LIBS += ../Assembly_Library/Src/Util/
|
---|
[277] | 97 | LIBS += ../Assembly_Library/Src/Serial/
|
---|
[88] | 98 | LIBS += ../XTIDE_Universal_BIOS/Inc/
|
---|
| 99 | HEADERS += $(LIBS)
|
---|
[3] | 100 |
|
---|
[88] | 101 |
|
---|
[3] | 102 | #################################################################
|
---|
| 103 | # Assembler preprocessor defines. #
|
---|
| 104 | #################################################################
|
---|
[580] | 105 | DEFINES_COMMON = MODULE_STRINGS_COMPRESSED MODULE_HOTKEYS MODULE_8BIT_IDE MODULE_EBIOS MODULE_SERIAL MODULE_SERIAL_FLOPPY MODULE_POWER_MANAGEMENT RESERVE_DIAGNOSTIC_CYLINDER NO_ATAID_VALIDATION
|
---|
[550] | 106 | DEFINES_COMMON_LARGE = MODULE_BOOT_MENU MODULE_8BIT_IDE_ADVANCED MODULE_COMPATIBLE_TABLES
|
---|
[389] | 107 |
|
---|
[567] | 108 | DEFINES_XT = $(DEFINES_COMMON) ELIMINATE_CGA_SNOW MODULE_8BIT_IDE_ADVANCED
|
---|
[580] | 109 | DEFINES_XTPLUS = $(DEFINES_XT) USE_186
|
---|
[550] | 110 | DEFINES_AT = $(DEFINES_COMMON) USE_AT USE_286 MODULE_IRQ MODULE_ADVANCED_ATA MODULE_COMPATIBLE_TABLES
|
---|
[389] | 111 |
|
---|
[397] | 112 | DEFINES_XT_LARGE = $(DEFINES_XT) $(DEFINES_COMMON_LARGE)
|
---|
| 113 | DEFINES_XTPLUS_LARGE = $(DEFINES_XTPLUS) $(DEFINES_COMMON_LARGE)
|
---|
[482] | 114 | DEFINES_AT_LARGE = $(DEFINES_AT) $(DEFINES_COMMON_LARGE)
|
---|
[389] | 115 |
|
---|
[580] | 116 | DEFINES_XT_TINY = MODULE_STRINGS_COMPRESSED MODULE_8BIT_IDE NO_ATAID_VALIDATION
|
---|
[550] | 117 | DEFINES_386_8K = $(DEFINES_AT) USE_386
|
---|
[3] | 118 |
|
---|
[567] | 119 | DEFINES_ALL_FEATURES = MODULE_8BIT_IDE MODULE_8BIT_IDE_ADVANCED MODULE_ADVANCED_ATA MODULE_EBIOS MODULE_BOOT_MENU MODULE_HOTKEYS MODULE_IRQ MODULE_SERIAL MODULE_SERIAL_FLOPPY MODULE_STRINGS_COMPRESSED MODULE_POWER_MANAGEMENT MODULE_COMPATIBLE_TABLES
|
---|
[530] | 120 | DEFINES_ALL_FEATURES += ELIMINATE_CGA_SNOW RELOCATE_INT13H_STACK RESERVE_DIAGNOSTIC_CYLINDER
|
---|
[3] | 121 |
|
---|
[489] | 122 |
|
---|
[3] | 123 | ###################
|
---|
| 124 | # Other variables #
|
---|
| 125 | ###################
|
---|
| 126 |
|
---|
[239] | 127 | # Target size of the ROM, used in main.asm for number of 512B blocks and by checksum Perl script below
|
---|
[506] | 128 | BIOS_SIZE = 8192 # For BIOS header (use even multiplier!)
|
---|
| 129 | ROMSIZE = $(BIOS_SIZE) # Size of binary to build when building with make checksum
|
---|
[511] | 130 | BIOS_SIZE_LARGE = 12288
|
---|
[506] | 131 | ROMSIZE_LARGE = $(BIOS_SIZE_LARGE)
|
---|
[239] | 132 |
|
---|
[3] | 133 | # Add -D in front of every preprocessor define declaration
|
---|
[506] | 134 | DEFS_XT = $(DEFINES_XT:%=-D%) -DBIOS_SIZE=$(BIOS_SIZE)
|
---|
| 135 | DEFS_XTPLUS = $(DEFINES_XTPLUS:%=-D%) -DBIOS_SIZE=$(BIOS_SIZE)
|
---|
| 136 | DEFS_AT = $(DEFINES_AT:%=-D%) -DBIOS_SIZE=$(BIOS_SIZE)
|
---|
| 137 | DEFS_XT_LARGE = $(DEFINES_XT_LARGE:%=-D%) -DBIOS_SIZE=$(BIOS_SIZE_LARGE)
|
---|
| 138 | DEFS_XTPLUS_LARGE = $(DEFINES_XTPLUS_LARGE:%=-D%) -DBIOS_SIZE=$(BIOS_SIZE_LARGE)
|
---|
| 139 | DEFS_AT_LARGE = $(DEFINES_AT_LARGE:%=-D%) -DBIOS_SIZE=$(BIOS_SIZE_LARGE)
|
---|
| 140 | DEFS_XT_TINY = $(DEFINES_XT_TINY:%=-D%) -DBIOS_SIZE=$(BIOS_SIZE)
|
---|
| 141 | DEFS_386_8K = $(DEFINES_386_8K:%=-D%) -DBIOS_SIZE=$(BIOS_SIZE)
|
---|
[489] | 142 | DEFS_ALL_FEATURES = $(DEFINES_ALL_FEATURES:%=-D%)
|
---|
[3] | 143 |
|
---|
| 144 | # Add -I in front of all header directories
|
---|
| 145 | IHEADERS = $(HEADERS:%=-I%)
|
---|
| 146 |
|
---|
[145] | 147 | # Path + target file to be built
|
---|
[3] | 148 | TARGET = $(BUILD_DIR)/$(PROG)
|
---|
| 149 |
|
---|
| 150 | #########################
|
---|
| 151 | # Compilers and linkers #
|
---|
| 152 | #########################
|
---|
| 153 |
|
---|
| 154 | # Make
|
---|
| 155 | MAKE = mingw32-make.exe
|
---|
| 156 |
|
---|
| 157 | # Assembler
|
---|
[188] | 158 | AS = nasm.exe
|
---|
[3] | 159 |
|
---|
| 160 | # use this command to erase files.
|
---|
| 161 | RM = -del /Q
|
---|
| 162 |
|
---|
| 163 |
|
---|
| 164 | #############################
|
---|
| 165 | # Compiler and linker flags #
|
---|
| 166 | #############################
|
---|
| 167 |
|
---|
| 168 | # Assembly compiler flags
|
---|
| 169 | ASFLAGS = -f bin # Produce binary object files
|
---|
| 170 | ASFLAGS += $(IHEADERS) # Set header file directory paths
|
---|
| 171 | ASFLAGS += -Worphan-labels # Warn about labels without colon
|
---|
[379] | 172 | ASFLAGS += -Ox # Optimize operands to their shortest forms
|
---|
[3] | 173 |
|
---|
| 174 |
|
---|
| 175 | ############################################
|
---|
| 176 | # Build process. Actual work is done here. #
|
---|
| 177 | ############################################
|
---|
| 178 |
|
---|
[272] | 179 | all: clean small large
|
---|
[145] | 180 | @echo All done!
|
---|
[3] | 181 |
|
---|
[397] | 182 | small: xt_tiny xt xtplus at 386_8k
|
---|
[506] | 183 | @echo All small binaries built!
|
---|
[272] | 184 |
|
---|
[397] | 185 | large: xt_large xtplus_large at_large
|
---|
[506] | 186 | @echo All large binaries built!
|
---|
[272] | 187 |
|
---|
[3] | 188 | at:
|
---|
[80] | 189 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.bin"
|
---|
[506] | 190 | @echo * Small AT version "$(TARGET)_at.bin" built.
|
---|
[3] | 191 |
|
---|
[238] | 192 | at_large:
|
---|
| 193 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT_LARGE) -l"$(TARGET)_atl.lst" -o"$(TARGET)_atl.bin"
|
---|
[558] | 194 | @echo * Large AT version "$(TARGET)_atl.bin" built.
|
---|
[238] | 195 |
|
---|
[3] | 196 | xtplus:
|
---|
[80] | 197 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.bin"
|
---|
[506] | 198 | @echo * Small XT Plus version "$(TARGET)_xtp.bin" built.
|
---|
[3] | 199 |
|
---|
[238] | 200 | xtplus_large:
|
---|
| 201 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS_LARGE) -l"$(TARGET)_xtpl.lst" -o"$(TARGET)_xtpl.bin"
|
---|
[558] | 202 | @echo * Large XT Plus version "$(TARGET)_xtpl.bin" built.
|
---|
[238] | 203 |
|
---|
[3] | 204 | xt:
|
---|
[80] | 205 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET)_xt.bin"
|
---|
[506] | 206 | @echo * Small XT version "$(TARGET)_xt.bin" built.
|
---|
[3] | 207 |
|
---|
[238] | 208 | xt_large:
|
---|
| 209 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT_LARGE) -l"$(TARGET)_xtl.lst" -o"$(TARGET)_xtl.bin"
|
---|
[558] | 210 | @echo * Large XT version "$(TARGET)_xtl.bin" built.
|
---|
[277] | 211 |
|
---|
[397] | 212 | xt_tiny:
|
---|
| 213 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT_TINY) -l"$(TARGET)_tiny.lst" -o"$(TARGET)_tiny.bin"
|
---|
| 214 | @echo * Tiny XT version "$(TARGET)_tiny.bin" built.
|
---|
[238] | 215 |
|
---|
[366] | 216 | 386_8k:
|
---|
| 217 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_386_8K) -l"$(TARGET)_386.lst" -o"$(TARGET)_386.bin"
|
---|
[506] | 218 | @echo * Small 386 version "$(TARGET)_386.bin" built.
|
---|
[366] | 219 |
|
---|
[322] | 220 | strings: src\Strings.asm
|
---|
[415] | 221 | @$(AS) src\Strings.asm $(ASFLAGS) $(DEFS_AT_LARGE) -DCHECK_FOR_UNUSED_ENTRYPOINTS -DMODULE_STRINGS_COMPRESSED_PRECOMPRESS -o build\Strings.bin -l build\StringsPrecompress.lst
|
---|
[322] | 222 | @perl ..\tools\StringsCompress.pl < build\StringsPrecompress.lst > src\StringsCompressed.asm
|
---|
| 223 | @echo StringsCompressed.asm updated!
|
---|
[252] | 224 |
|
---|
[3] | 225 | clean:
|
---|
| 226 | @$(RM) $(BUILD_DIR)\*.*
|
---|
| 227 | @echo Deleted "(*.*)" from "$(BUILD_DIR)/"
|
---|
[186] | 228 |
|
---|
[294] | 229 | checksum: all
|
---|
[397] | 230 | @perl ..\tools\checksum.pl $(TARGET)_tiny.bin $(ROMSIZE)
|
---|
| 231 | @perl ..\tools\checksum.pl $(TARGET)_xt.bin $(ROMSIZE)
|
---|
| 232 | @perl ..\tools\checksum.pl $(TARGET)_xtp.bin $(ROMSIZE)
|
---|
| 233 | @perl ..\tools\checksum.pl $(TARGET)_at.bin $(ROMSIZE)
|
---|
| 234 | @perl ..\tools\checksum.pl $(TARGET)_xtl.bin $(ROMSIZE_LARGE)
|
---|
| 235 | @perl ..\tools\checksum.pl $(TARGET)_xtpl.bin $(ROMSIZE_LARGE)
|
---|
[240] | 236 | @perl ..\tools\checksum.pl $(TARGET)_atl.bin $(ROMSIZE_LARGE)
|
---|
[369] | 237 | @perl ..\tools\checksum.pl $(TARGET)_386.bin $(ROMSIZE)
|
---|
[203] | 238 |
|
---|
[491] | 239 | unused:
|
---|
[489] | 240 | @echo "All Features"
|
---|
| 241 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_ALL_FEATURES) $(DEFS_XT) $(DEFS_XT_PLUS) $(DEFS_AT) $(DEFS_XT_LARGE) $(DEFS_XTPLUS_LARGE) $(DEFS_AT_LARGE) $(DEFS_XT_TINY) $(DEFS_386_8K) -o"$(TARGET)_unused.asm" -l"$(TARGET)_unused.lst"
|
---|
| 242 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_ALL_FEATURES) $(DEFS_XT) $(DEFS_XT_PLUS) $(DEFS_AT) $(DEFS_XT_LARGE) $(DEFS_XTPLUS_LARGE) $(DEFS_AT_LARGE) $(DEFS_XT_TINY) $(DEFS_386_8K) -o"$(TARGET)_unused.asm" -E -DCHECK_FOR_UNUSED_ENTRYPOINTS
|
---|
| 243 | @perl ..\tools\unused.pl $(TARGET)_unused.lst $(TARGET)_unused.asm
|
---|
| 244 | @echo "XT Small"
|
---|
| 245 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -o"$(TARGET)_unused_xt.asm" -l"$(TARGET)_unused_xt.lst"
|
---|
| 246 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -o"$(TARGET)_unused_xt.asm" -E -DCHECK_FOR_UNUSED_ENTRYPOINTS
|
---|
| 247 | @perl ..\tools\unused.pl $(TARGET)_unused_xt.lst $(TARGET)_unused_xt.asm
|
---|
| 248 | @echo "XT Large"
|
---|
| 249 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT_LARGE) -o"$(TARGET)_unused_xtl.asm" -l"$(TARGET)_unused_xtl.lst"
|
---|
| 250 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT_LARGE) -o"$(TARGET)_unused_xtl.asm" -E -DCHECK_FOR_UNUSED_ENTRYPOINTS
|
---|
| 251 | @perl ..\tools\unused.pl $(TARGET)_unused_xtl.lst $(TARGET)_unused_xtl.asm
|
---|
| 252 | @echo "AT Small"
|
---|
| 253 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -o"$(TARGET)_unused_at.asm" -l"$(TARGET)_unused_at.lst"
|
---|
| 254 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -o"$(TARGET)_unused_at.asm" -E -DCHECK_FOR_UNUSED_ENTRYPOINTS
|
---|
| 255 | @perl ..\tools\unused.pl $(TARGET)_unused_at.lst $(TARGET)_unused_at.asm
|
---|
| 256 | @echo "AT Large"
|
---|
| 257 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT_LARGE) -o"$(TARGET)_unused_atl.asm" -l"$(TARGET)_unused_atl.lst"
|
---|
| 258 | @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT_LARGE) -o"$(TARGET)_unused_atl.asm" -E -DCHECK_FOR_UNUSED_ENTRYPOINTS
|
---|
| 259 | @perl ..\tools\unused.pl $(TARGET)_unused_atl.lst $(TARGET)_unused_atl.asm
|
---|
[194] | 260 |
|
---|
[489] | 261 |
|
---|