Changeset 145 in xtideuniversalbios for trunk/Assembly_Library
- Timestamp:
- Mar 15, 2011, 11:28:17 AM (14 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/Assembly_Library
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Keyboard/Keyboard.asm
r133 r145 159 159 je SHORT .Backspace 160 160 jcxz .RejectCharacter 161 test al, al ; Clear ZF and CF161 clc ; Clear CF (ZF is already cleared) 162 162 ret 163 163 -
trunk/Assembly_Library/Src/String/Char.asm
r41 r145 116 116 cmp al, '9' ; Decimal digit 117 117 jbe SHORT .ConvertToDecimalDigit 118 sub al, 'a'-10 ; Convert to hexadecimal integer 119 stc 120 ret 118 sub al, 'a'-'0'-10 ; Convert to hexadecimal integer 121 119 ALIGN JUMP_ALIGN 122 120 .ConvertToDecimalDigit: -
trunk/Assembly_Library/makefile
r85 r145 50 50 # Assembler preprocessor defines. # 51 51 ################################################################# 52 DEFINES = 52 DEFINES = 53 53 DEFINES_XT = ELIMINATE_CGA_SNOW 54 54 DEFINES_XTPLUS = USE_186 ELIMINATE_CGA_SNOW … … 69 69 IHEADERS = $(HEADERS:%=-I%) 70 70 71 # Path + target file to be buil d71 # Path + target file to be built 72 72 TARGET = $(BUILD_DIR)/$(PROG) 73 73 … … 107 107 # Make clean debug and release versions 108 108 all: clean at xtplus xt 109 @echo All build!109 @echo All done! 110 110 111 111 at: 112 112 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.$(EXTENSION)" 113 @echo AT version "$(TARGET)_at.$(EXTENSION)" buil d.113 @echo AT version "$(TARGET)_at.$(EXTENSION)" built. 114 114 115 115 xtplus: 116 116 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.$(EXTENSION)" 117 @echo XT plus version "$(TARGET)_xtp.$(EXTENSION)" buil d.117 @echo XT plus version "$(TARGET)_xtp.$(EXTENSION)" built. 118 118 119 119 xt: 120 120 @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET)_xt.$(EXTENSION)" 121 @echo XT version "$(TARGET)_xt.$(EXTENSION)" buil d.121 @echo XT version "$(TARGET)_xt.$(EXTENSION)" built. 122 122 123 123 clean:
Note:
See TracChangeset
for help on using the changeset viewer.