Last change
on this file since 132 was 131, checked in by Tomi Tilli, 14 years ago |
Changes to Assembly Library:
- Some functions are now excluded from XTIDE Universal BIOS with EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS define.
|
File size:
1.7 KB
|
Rev | Line | |
---|
[54] | 1 | ; Project name : Assembly Library
|
---|
| 2 | ; Description : Functions for register operations.
|
---|
| 3 |
|
---|
[66] | 4 |
|
---|
[54] | 5 | ; Section containing code
|
---|
| 6 | SECTION .text
|
---|
| 7 |
|
---|
| 8 | ;--------------------------------------------------------------------
|
---|
| 9 | ; Registers_ExchangeDSSIwithESDI
|
---|
| 10 | ; Parameters
|
---|
| 11 | ; Nothing
|
---|
| 12 | ; Returns:
|
---|
| 13 | ; DS:SI and ES:DI are exchanged.
|
---|
| 14 | ; Corrupts registers:
|
---|
| 15 | ; Nothing
|
---|
| 16 | ;--------------------------------------------------------------------
|
---|
| 17 | ALIGN JUMP_ALIGN
|
---|
| 18 | Registers_ExchangeDSSIwithESDI:
|
---|
| 19 | push ds
|
---|
| 20 | push es
|
---|
| 21 | pop ds
|
---|
| 22 | pop es
|
---|
| 23 | xchg si, di
|
---|
| 24 | ret
|
---|
| 25 |
|
---|
| 26 |
|
---|
| 27 | ;--------------------------------------------------------------------
|
---|
| 28 | ; Registers_CopySSBPtoESDI
|
---|
[106] | 29 | ; Registers_CopySSBPtoDSSI
|
---|
| 30 | ; Registers_CopyDSSItoESDI
|
---|
| 31 | ; Registers_CopyESDItoDSSI
|
---|
[54] | 32 | ; Parameters
|
---|
| 33 | ; Nothing
|
---|
| 34 | ; Returns:
|
---|
| 35 | ; Copies farm pointer to different segment/pointer register pair
|
---|
| 36 | ; Corrupts registers:
|
---|
| 37 | ; Nothing
|
---|
| 38 | ;--------------------------------------------------------------------
|
---|
[105] | 39 | ALIGN JUMP_ALIGN
|
---|
| 40 | Registers_CopySSBPtoESDI:
|
---|
| 41 | COPY_SSBP_TO_ESDI
|
---|
| 42 | ret
|
---|
[54] | 43 |
|
---|
[131] | 44 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[106] | 45 | ALIGN JUMP_ALIGN
|
---|
| 46 | Registers_CopySSBPtoDSSI:
|
---|
| 47 | COPY_SSBP_TO_DSSI
|
---|
| 48 | ret
|
---|
[54] | 49 |
|
---|
[106] | 50 | ALIGN JUMP_ALIGN
|
---|
| 51 | Registers_CopyDSSItoESDI:
|
---|
| 52 | COPY_DSSI_TO_ESDI
|
---|
| 53 | ret
|
---|
[54] | 54 |
|
---|
[106] | 55 | ALIGN JUMP_ALIGN
|
---|
| 56 | Registers_CopyESDItoDSSI:
|
---|
| 57 | COPY_ESDI_to_DSSI
|
---|
| 58 | ret
|
---|
| 59 | %endif
|
---|
| 60 |
|
---|
| 61 |
|
---|
[54] | 62 | ;--------------------------------------------------------------------
|
---|
[106] | 63 | ; Registers_SetZFifNullPointerInDSSI (commented to save bytes)
|
---|
[54] | 64 | ; Parameters
|
---|
| 65 | ; DS:SI: Far pointer
|
---|
| 66 | ; Returns:
|
---|
| 67 | ; ZF: Set if NULL pointer in DS:SI
|
---|
| 68 | ; Corrupts registers:
|
---|
| 69 | ; Nothing
|
---|
| 70 | ;--------------------------------------------------------------------
|
---|
[105] | 71 | ;ALIGN JUMP_ALIGN
|
---|
| 72 | ;Registers_SetZFifNullPointerInDSSI:
|
---|
| 73 | ; push ax
|
---|
| 74 | ; mov ax, ds
|
---|
| 75 | ; or ax, si
|
---|
| 76 | ; pop ax
|
---|
| 77 | ; ret
|
---|
Note:
See
TracBrowser
for help on using the repository browser.