minix/lib/i86/em/em_stb.s
2005-04-21 14:53:53 +00:00

17 lines
165 B
ArmAsm
Executable file

.define ___stb
.text
! Routine for copying structs.
___stb:
mov bx,sp
push si
push di
mov cx,2(bx)
mov si,4(bx)
mov di,6(bx)
rep
movb
pop di
pop si
ret