source: xtideuniversalbios/trunk/Assembly_Library/Src/Util/Size.asm@ 96

Last change on this file since 96 was 85, checked in by Tomi Tilli, 14 years ago

Changes to Assembly Library:

  • Some minor adjustments
File size: 3.8 KB
RevLine 
[41]1; Project name : Assembly Library
2; Description : Functions for size calculations.
3
[85]4struc BYTE_MULTIPLES
5 .B resb 1
6 .kiB resb 1
7 .MiB resb 1
8 .GiB resb 1
9 .TiB resb 1
10endstruc
11
[41]12; Section containing code
13SECTION .text
14
15;--------------------------------------------------------------------
[85]16; Size_GetSizeToAXAndCharToDLfromBXDXAXwithMagnitudeInCX
[41]17; Parameters:
18; BX:DX:AX: Size in magnitude
[85]19; CX: Magnitude in BYTE_MULTIPLES
[41]20; Returns:
21; AX: Size in magnitude
22; CX: Tenths
23; DL: Magnitude character:
24; 'k' = *1024 B = kiB
25; 'M' = *1024 kiB = MiB
26; 'G' = *1024 MiB = GiB
27; 'T' = *1024 GiB = TiB
28; 'P' = *1024 TiB = PiB
29; Corrupts registers:
30; BX, DH
31;--------------------------------------------------------------------
32ALIGN JUMP_ALIGN
33Size_GetSizeToAXAndCharToDLfromBXDXAXwithMagnitudeInCX:
34 push si
35
36ALIGN JUMP_ALIGN
37.MagnitudeConversionLoop:
38 ePUSH_T si, .MagnitudeConversionLoop
39 test bx, bx ; Bits 32...47 in use?
40 jnz SHORT Size_DivideSizeInBXDXAXby1024andIncrementMagnitudeInCX
41 test dx, dx ; Bits 16...31 in use?
42 jnz SHORT Size_DivideSizeInBXDXAXby1024andIncrementMagnitudeInCX
43 cmp ax, 10000 ; 5 digits needed?
44 jae SHORT Size_DivideSizeInBXDXAXby1024andIncrementMagnitudeInCX
45
46 add sp, BYTE 2 ; Clean return address from stack
47 call Size_ConvertMagnitudeRemainderInSItoTenths
48 call Size_GetMagnitudeCharacterToDLfromMagnitudeInCX
49 mov cx, si
50
51 pop si
52 ret
53
54;--------------------------------------------------------------------
55; Size_DivideSizeInBXDXAXby1024andIncrementMagnitudeInCX
56; Parameters:
57; BX:DX:AX: Size
[85]58; CX: Magnitude in BYTE_MULTIPLES
[41]59; Returns:
60; BX:DX:AX: Size in magnitude
61; SI: Remainder (0...1023)
[85]62; CX: Magnitude in BYTE_MULTIPLES
[41]63; Corrupts registers:
64; Nothing
65;--------------------------------------------------------------------
66ALIGN JUMP_ALIGN
67Size_DivideSizeInBXDXAXby1024andIncrementMagnitudeInCX:
68 push cx
69 xor si, si ; Zero remainder
70 mov cl, 10 ; Divide by 1024
71ALIGN JUMP_ALIGN
72.ShiftLoop:
73 call Size_DivideBXDXAXbyTwo
74 rcr si, 1 ; Update remainder
75 loop .ShiftLoop
76 eSHR_IM si, 6 ; Remainder to SI beginning
77 pop cx
78 inc cx ; Increment magnitude
79 ret
80
81
82;--------------------------------------------------------------------
83; Size_ConvertSectorCountInBXDXAXtoKiB
84; Size_DivideBXDXAXbyTwo
85; Parameters:
86; BX:DX:AX: Total sector count
87; Returns:
88; BX:DX:AX: Total size in kiB
89; CF: Remainder from division
90; Corrupts registers:
91; Nothing
92;--------------------------------------------------------------------
93ALIGN JUMP_ALIGN
94Size_ConvertSectorCountInBXDXAXtoKiB:
95Size_DivideBXDXAXbyTwo:
96 shr bx, 1 ; Divide sector count by 2...
97 rcr dx, 1 ; ...to get disk size in...
98 rcr ax, 1 ; ...kiB
99 ret
100
101
102;--------------------------------------------------------------------
103; Size_ConvertMagnitudeRemainderInSItoTenths
104; Parameters:
105; SI: Remainder from last magnitude division (0...1023)
106; Returns:
107; SI: Tenths
108; Corrupts registers:
109; DX
110;--------------------------------------------------------------------
111ALIGN JUMP_ALIGN
112Size_ConvertMagnitudeRemainderInSItoTenths:
113 push ax
114
115 mov ax, 10
116 mul si ; DX:AX = remainder * 10
117 eSHR_IM ax, 10 ; Divide AX by 1024
118 xchg si, ax ; SI = tenths
119
120 pop ax
121 ret
122
123
124;--------------------------------------------------------------------
125; Size_GetMagnitudeCharacterToDLfromMagnitudeInCX
126; Parameters:
[85]127; CX: Magnitude in BYTE_MULTIPLES
[41]128; Returns:
129; DL: Magnitude character
130; Corrupts registers:
131; BX
132;--------------------------------------------------------------------
133ALIGN JUMP_ALIGN
134Size_GetMagnitudeCharacterToDLfromMagnitudeInCX:
135 mov bx, cx
136 mov dl, [cs:bx+.rgbMagnitudeToChar]
137 ret
138ALIGN WORD_ALIGN
139.rgbMagnitudeToChar: db " kMGTP"
Note: See TracBrowser for help on using the repository browser.