mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
12 lines
225 B
ArmAsm
12 lines
225 B
ArmAsm
;
|
|
; Oliver Schmidt, 10.9.2009
|
|
;
|
|
; Default ProDOS 8 I/O buffer management
|
|
;
|
|
|
|
.export iobuf_alloc, iobuf_free
|
|
.import _posix_memalign, _free
|
|
|
|
iobuf_alloc := _posix_memalign
|
|
iobuf_free := _free
|