Changeset 80 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/makefile


Ignore:
Timestamp:
Jan 6, 2011, 8:25:21 AM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to XTIDE Universal BIOS:

  • Makefile now uses Nasm (instead of Yasm)
  • Makefile now generates listing files
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/makefile

    r61 r80  
    7979
    8080# Assembler
    81 AS = yasm.exe
    82 #AS = nasm.exe
     81AS = nasm.exe
    8382
    8483# use this command to erase files.
     
    109108
    110109at:
    111     @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -o"$(TARGET)_at.bin"
     110    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.bin"
    112111    @echo AT version "$(TARGET)_at.bin" build.
    113112
    114113xtplus:
    115     @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -o"$(TARGET)_xtp.bin"
     114    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.bin"
    116115    @echo XT plus version "$(TARGET)_xtp.bin" build.
    117116
    118117xt:
    119     @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -o"$(TARGET)_xt.bin"
     118    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET)_xt.bin"
    120119    @echo XT version "$(TARGET)_xt.bin" build.
    121120
Note: See TracChangeset for help on using the changeset viewer.