Changeset 593 in xtideuniversalbios for trunk/Assembly_Library/Src/Util
- Timestamp:
- Jun 30, 2018, 8:27:04 AM (6 years ago)
- Location:
- trunk/Assembly_Library/Src/Util
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Util/Bit.asm
r592 r593 86 86 jb SHORT Bit_SetToAXfromIndexInCL 87 87 88 %ifdef USE_NEC_V 89 eSET1 dx, cl ; SET1 ignores bits 7...4 in CL 90 %else 88 91 sub cl, 16 89 92 xchg ax, dx … … 91 94 xchg dx, ax 92 95 add cl, 16 96 %endif 93 97 ret 94 98 … … 106 110 ALIGN JUMP_ALIGN 107 111 Bit_SetToAXfromIndexInCL: 112 %ifdef USE_NEC_V 113 eSET1 ax, cl 114 %else 108 115 push dx 109 116 … … 113 120 114 121 pop dx 122 %endif 115 123 ret 116 124
Note:
See TracChangeset
for help on using the changeset viewer.