ack/mach/i86/libsys/stty.s
1987-01-08 10:41:08 +00:00

16 lines
210 B
ArmAsm

.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
.define _stty
.extern _stty, _ioctl
_stty:
push bp
mov bp,sp
push 6(bp)
mov ax,29705
push ax
push 4(bp)
call _ioctl
add sp,6
mov sp,bp
pop bp
ret