[Z88dk-commits] CVS: z88dk/libsrc/_DEVELOPMENT/stdlib/z80 asm_atexit

Bridge to the z88dk-commits mailing list
Post Reply
alvin

[Z88dk-commits] CVS: z88dk/libsrc/_DEVELOPMENT/stdlib/z80 asm_atexit

Post by alvin »

Update of /cvsroot/z88dk/z88dk/libsrc/_DEVELOPMENT/stdlib/z80
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv11113

Modified Files:
asm_atexit.asm
Log Message:
exit stack indexing was off by one word

Index: asm_atexit.asm
===================================================================
RCS file: /cvsroot/z88dk/z88dk/libsrc/_DEVELOPMENT/stdlib/z80/asm_atexit.asm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** asm_atexit.asm 22 Mar 2014 07:43:06 -0000 1.3
--- asm_atexit.asm 29 Mar 2014 16:02:58 -0000 1.4
***************
*** 41,45 ****
ld c,(hl)
ld b,0
! inc hl
add hl,bc
add hl,bc
--- 41,45 ----
ld c,(hl)
ld b,0
! dec hl
add hl,bc
add hl,bc


------------------------------------------------------------------------------
Post Reply