ae75f9d4e5
- 755 -> 644
17 lines
172 B
ArmAsm
17 lines
172 B
ArmAsm
.define .xor
|
|
.text
|
|
|
|
! #bytes in cx
|
|
.xor:
|
|
pop bx ! return address
|
|
mov dx,di
|
|
mov di,sp
|
|
add di,cx
|
|
sar cx,#1
|
|
1:
|
|
pop ax
|
|
xor ax,(di)
|
|
stos
|
|
loop 1b
|
|
mov di,dx
|
|
jmp (bx)
|