source: xtideuniversalbios/trunk/Assembly_Library/Inc/Math.inc

Last change on this file was 592, checked in by krille_n_, 6 years ago

Changes:

  • The problem with NASM in the previous revision (r591) has been fixed.
  • The colors used by the boot menu and hotkey bar can now be customized by selecting one of a number of pre-defined color themes. Suggestions for additional themes are more than welcome!
  • Large builds are now 10 KB. Small builds are still 8 KB with the exception of the Tiny build which is now 4 KB. In other words, builds are now as small as possible to make it easier to combine them with other BIOSes.
  • Added code to the library to improve drive error handling. XTIDECFG can now handle "Drive Not Ready" errors.
  • Fixed a couple of potential bugs in AtaID.asm (AtaID_GetMaxPioModeToAXandMinCycleTimeToCX); 1) ATA1.bPioMode was treated as a WORD variable. 2) ATA2.bPIOSupp was assumed to be non-zero which would result in PIO mode 3 being returned if the assumption was wrong.
  • Made the same changes in the equivalent function used by BIOSDRVS (DisplayPioModeInformationUsingAtaInfoFromDSBX in AtaInfo.asm).
  • Fixed a bug from r587 in PDC20x30.asm in PDC20x30_GetMaxPioModeToALandMinPioCycleTimeToBX.
  • Fixed a bug from r523 in XTIDECFG where Auto Configure would only set the IRQ on one IDE interface on AT-builds.
  • XTIDECFG will now restore the default settings for the "Serial port virtual device" when reselecting it in the list of device types. This makes it behave consistently for all device types.
  • The eAAM macro is now used regardless if USE_UNDOC_INTEL is defined or not because it is apparently supported on all processors including the NEC V20/V30 CPUs.
  • Renamed the EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS define to EXCLUDE_FROM_XUB.
  • Added a define to exclude unused library code from BIOSDRVS (EXCLUDE_FROM_BIOSDRVS). This makes it a lot smaller than in previous revisions.
  • All unnecessary CLD-instructions are now under a new define 'CLD_NEEDED' which is only enabled for the BIOS. It is disabled for XTIDECFG and BIOSDRVS but can be enabled if needed by adding this define to the respective makefile. This change was made because these unnecessary instructions are wasteful and should never be needed. In fact, they only serve to hide bugs (in other peoples code) which I strongly believe should be avoided. I recommend people making their own BIOSes from source to not use this define as it's extremely unlikely to be needed.
  • Updated the copyright info in SerDrive and changed an URL to point to the new site.
  • Updated the copyright info and version number in BIOSDRVS.
  • Updated the copyright info in XTIDECFG.
  • Optimizations in general.
File size: 2.8 KB
Line 
1; Project name  :   Assembly Library
2; Description   :   Math related macros.
3%ifndef MATH_INC
4%define MATH_INC
5
6FALSE       EQU     0
7TRUE        EQU     1
8
9
10;--------------------------------------------------------------------
11; MIN_U     Unsigned comparison
12; MIN_S     Signed comparison
13;   Parameters:
14;       %1:     Operand 1
15;       %2:     Operand 2
16;   Returns:
17;       %1:     Lesser operand
18;   Corrupts registers:
19;       Nothing
20;--------------------------------------------------------------------
21%macro MIN_U 2
22    cmp     %1, %2              ; Is %1 smaller?
23    jb      %%Return            ;  If so, return
24    mov     %1, %2              ; Copy %2 to %1
25%%Return:
26%endmacro
27
28%macro MIN_S 2
29    cmp     %1, %2              ; Is %1 smaller?
30    jl      %%Return            ;  If so, return
31    mov     %1, %2              ; Copy %2 to %1
32%%Return:
33%endmacro
34
35
36;--------------------------------------------------------------------
37; MAX_U     Unsigned comparison
38; MAX_S     Signed comparison
39;   Parameters:
40;       %1:     Operand 1
41;       %2:     Operand 2
42;   Returns:
43;       %1:     Greater operand
44;   Corrupts registers:
45;       Nothing
46;--------------------------------------------------------------------
47%macro MAX_U 2
48    cmp     %1, %2              ; Is %1 greater?
49    ja      %%Return            ;  If so, return
50    mov     %1, %2              ; Copy %2 to %1
51%%Return:
52%endmacro
53
54%macro MAX_S 2
55    cmp     %1, %2              ; Is %1 greater?
56    jg      %%Return            ;  If so, return
57    mov     %1, %2              ; Copy %2 to %1
58%%Return:
59%endmacro
60
61
62;--------------------------------------------------------------------
63; SHL_DXAX
64;   Parameters:
65;       %1:     Number of bits to shift. Can be (in preferred order) CX, CL or an immediate value.
66;   Returns:
67;       DX:AX   Shifted value
68;   Corrupts registers:
69;       CX
70;--------------------------------------------------------------------
71%macro SHL_DXAX 1
72%ifdef USE_386
73    %ifnidni %1, cx
74        ; %1 is CL or an immediate
75        shld    dx, ax, %1
76        shl     ax, %1
77    %else
78        ; %1 is CX
79        shld    dx, ax, cl
80        shl     ax, cl
81    %endif
82%else
83    %ifidni %1, cl
84        ; %1 is CL
85        xor     ch, ch
86    %elifnidni %1, cx
87        ; %1 is an immediate
88        mov     cx, %1
89    %endif
90ALIGN JUMP_ALIGN
91.ShiftNextBit:
92    eSHL_IM ax, 1
93    eRCL_IM dx, 1
94    loop    .ShiftNextBit
95%endif
96%endmacro
97
98
99;--------------------------------------------------------------------
100; SHR_DXAX
101;   Parameters:
102;       %1:     Number of bits to shift. Can be (in preferred order) CX, CL or an immediate value.
103;   Returns:
104;       DX:AX   Shifted value
105;   Corrupts registers:
106;       CX
107;--------------------------------------------------------------------
108%macro SHR_DXAX 1
109%ifdef USE_386
110    %ifnidni %1, cx
111        ; %1 is CL or an immediate
112        shrd    ax, dx, %1
113        shr     dx, %1
114    %else
115        ; %1 is CX
116        shrd    ax, dx, cl
117        shr     dx, cl
118    %endif
119%else
120    %ifidni %1, cl
121        ; %1 is CL
122        xor     ch, ch
123    %elifnidni %1, cx
124        ; %1 is an immediate
125        mov     cx, %1
126    %endif
127ALIGN JUMP_ALIGN
128.ShiftNextBit:
129    shr     dx, 1
130    rcr     ax, 1
131    loop    .ShiftNextBit
132%endif
133%endmacro
134
135
136%endif ; MATH_INC
Note: See TracBrowser for help on using the repository browser.