ack/mach/6500/libem/stl.s
1984-12-17 11:03:13 +00:00

18 lines
244 B
ArmAsm

.define Stl
! This subroutine performs the storage of a local which offset
! is to big.
Stl:
jsr Locaddr ! get the local address
jsr Pop ! get the word
ldy #1
sta (ADDR),y ! store highbyte
dey
txa
sta (ADDR),y ! store lowbyte
rts