]> git.sur5r.net Git - cc65/commitdiff
Hooking into the MLI call needs much more thoughts - and is currently not necessary...
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 12 Sep 2009 20:55:20 +0000 (20:55 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 12 Sep 2009 20:55:20 +0000 (20:55 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4159 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/apple2/iobuf.s
libsrc/apple2/mli.s

index 699f3d90122dd6be40c5e2aa1ae01b3d88f7fa2d..88a4503d0815bbf1b4944efd808fa0fdab4ec84e 100644 (file)
@@ -4,9 +4,8 @@
 ; Default ProDOS 8 I/O buffer management
 ; 
 
-        .export                iobuf_alloc, iobuf_free, iobuf_mli
+        .export                iobuf_alloc, iobuf_free
         .import                _posix_memalign, _free
 
 iobuf_alloc := _posix_memalign
 iobuf_free  := _free
-iobuf_mli   := $BF00
index 9469ce9607667f084a2b786876240660b0835a40..a1d05be8c6823a2bf9a20fcfd406c4a03327ed7a 100644 (file)
@@ -5,7 +5,6 @@
 ;
 
         .import         __dos_type
-        .import         iobuf_mli
 
         .include        "mli.inc"
 
@@ -25,7 +24,7 @@ callmli:
         beq     oserr
 
         ; Call MLI and return
-        jsr     iobuf_mli
+        jsr     $BF00          ; MLI call entry point
 call:   .byte   $00
         .addr   mliparam
         rts