Changeset 621 in xtideuniversalbios for trunk/Assembly_Library/Src/Util
- Timestamp:
- Nov 21, 2021, 2:15:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Util/Memory.asm
r602 r621 160 160 ALIGN JUMP_ALIGN 161 161 Memory_SumCXbytesFromESSItoAL: 162 push si 163 dec si 162 add si, cx 164 163 xor al, al 165 164 ALIGN JUMP_ALIGN 166 165 .AddNextByteToAL: 167 inc si166 dec si 168 167 add al, [es:si] 169 168 loop .AddNextByteToAL 170 pop si171 169 ret 172 170 %endif
Note:
See TracChangeset
for help on using the changeset viewer.