Changeset 489 in xtideuniversalbios for trunk/Assembly_Library/Src/Util
- Timestamp:
- Dec 13, 2012, 7:32:09 AM (12 years ago)
- google:author:
- gregli@hotmail.com
- Location:
- trunk/Assembly_Library/Src/Util
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Util/Memory.asm
r445 r489 79 79 ; Nothing 80 80 ;-------------------------------------------------------------------- 81 %ifdef INCLUDE_MENU_LIBRARY 81 82 ALIGN JUMP_ALIGN 82 83 Memory_ZeroSSBPwithSizeInCX: … … 90 91 pop es 91 92 ret 93 %endif 92 94 95 93 96 ;-------------------------------------------------------------------- 94 97 ; Memory_ZeroESDIwithSizeInCX -
trunk/Assembly_Library/Src/Util/Registers.asm
r376 r489 53 53 ;-------------------------------------------------------------------- 54 54 ALIGN JUMP_ALIGN 55 %ifdef INCLUDE_MENU_LIBRARY 55 56 Registers_CopySSBPtoESDI: 56 57 COPY_SSBP_TO_ESDI 57 58 ret 59 %endif 58 60 59 61 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS -
trunk/Assembly_Library/Src/Util/Size.asm
r376 r489 18 18 ; 19 19 20 %ifdef INCLUDE_MENU_LIBRARY 20 21 struc BYTE_MULTIPLES 21 22 .B resb 1 … … 82 83 ret 83 84 .rgbMagnitudeToChar: db " kMGTP" 84 85 %endif 85 86 86 87 ;-------------------------------------------------------------------- … … 111 112 ret 112 113 113 114 114 ;-------------------------------------------------------------------- 115 115 ; Size_ConvertSectorCountInBXDXAXtoKiB … … 124 124 ;-------------------------------------------------------------------- 125 125 ALIGN UTIL_SIZE_JUMP_ALIGN 126 Size_ConvertSectorCountInBXDXAXtoKiB: 126 Size_ConvertSectorCountInBXDXAXtoKiB: ; unused entrypoint ok 127 127 Size_DivideBXDXAXbyTwo: 128 128 shr bx, 1 ; Divide sector count by 2...
Note:
See TracChangeset
for help on using the changeset viewer.