1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
cc65/libsrc/apple2/iobuf.s

12 lines
224 B
ArmAsm
Raw Normal View History

;
; Oliver Schmidt, 10.9.2009
;
; Default ProDOS 8 I/O buffer management
2022-04-17 14:06:22 +00:00
;
.export iobuf_alloc, iobuf_free
.import _posix_memalign, _free
iobuf_alloc := _posix_memalign
iobuf_free := _free