]> git.sur5r.net Git - cc65/blobdiff - libsrc/atari/savevec.s
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / atari / savevec.s
index d29bde6225c0b0b449887a69956851249dc27d94..d2de4ef302068e13cd59b08537328322bc07a6ba 100644 (file)
@@ -2,11 +2,11 @@
 ; save and restore system vectors
 ; originally by Mark Keates
 ;
-; void save_vecs(void);
-; void rest_vecs(void);
+; void _save_vecs(void);
+; void _rest_vecs(void);
 ;
 
-       .export _save_vecs,_rest_vecs
+       .export __save_vecs,__rest_vecs
 .include       "atari.inc"
 
        .bss
@@ -24,7 +24,7 @@ old_rmargin: .res 1   ; lmargin saved in startup code
 
        .code
 
-.proc  _save_vecs
+.proc  __save_vecs
 
        lda     VDSLST
        sta     old_dli
@@ -63,7 +63,7 @@ SETUP1:
 
 .endproc
 
-.proc  _rest_vecs
+.proc  __rest_vecs
 
        lda     #6
        ldx     old_vbi+1