]> git.sur5r.net Git - cc65/blob - libsrc/apple2/iobuf.s
Much better approach for ProDOS 8 IO-buffer custom implementations - the first one...
[cc65] / libsrc / apple2 / iobuf.s
1 ;
2 ; Oliver Schmidt, 10.9.2009
3 ;
4 ; Default ProDOS 8 I/O buffer management
5
6
7         .export         iobuf_alloc, iobuf_free, iobuf_mli
8         .import         _posix_memalign, _free
9
10 iobuf_alloc := _posix_memalign
11 iobuf_free  := _free
12 iobuf_mli   := $BF00