18 lines
		
	
	
	
		
			223 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			223 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
| .sect .text; .sect .rom; .sect .data; .sect .bss
 | |
| .sect .text
 | |
| .define	.ior
 | |
| 
 | |
| 	! #bytes in cx
 | |
| .ior:
 | |
| 	pop	bx		! return address
 | |
| 	mov	dx,di
 | |
| 	mov	di,sp
 | |
| 	add	di,cx
 | |
| 	sar	cx,1
 | |
| 1:
 | |
| 	pop	ax
 | |
| 	or	ax,(di)
 | |
| 	stos
 | |
| 	loop	1b
 | |
| 	mov	di,dx
 | |
| 	jmp	bx
 |