ack/mach/6500/libem/stl.s

18 lines
244 B
ArmAsm
Raw Normal View History

1984-12-17 11:03:13 +00:00
.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