Much better approach for ProDOS 8 IO-buffer custom implementations - the first one was actually kind of stupid.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4155 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -4,12 +4,9 @@
|
||||
; Default ProDOS 8 I/O buffer management
|
||||
;
|
||||
|
||||
.export iobuf_alloc, iobuf_free
|
||||
.export iobuf_init, iobuf_done
|
||||
.import iobuf_nop
|
||||
.export iobuf_alloc, iobuf_free, iobuf_mli
|
||||
.import _posix_memalign, _free
|
||||
|
||||
iobuf_alloc := _posix_memalign
|
||||
iobuf_free := _free
|
||||
iobuf_init := iobuf_nop
|
||||
iobuf_done := iobuf_nop
|
||||
iobuf_mli := $BF00
|
||||
|
||||
Reference in New Issue
Block a user