; ; Ullrich von Bassewitz, 31.08.1998 ; ; CC65 runtime: Load ax from offset in stack ; .export ldax0sp, ldaxysp .importzp c_sp ; Beware: The optimizer knows about the value in Y after return! ldax0sp: ldy #1 ldaxysp: lda (c_sp),y ; get high byte tax ; and save it dey ; point to lo byte lda (c_sp),y ; load low byte rts