mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
9afcff6020
git-svn-id: svn://svn.cc65.org/cc65/trunk@3383 b7a2c559-68d2-44c3-8de9-860c34a00d81
36 lines
880 B
PHP
36 lines
880 B
PHP
;
|
|
; _heap.inc
|
|
;
|
|
; (c) Copyright 2003, Ullrich von Bassewitz (uz@cc65.org)
|
|
;
|
|
|
|
; Assembler include file that makes the constants and structures in _heap.h
|
|
; available for asm code.
|
|
|
|
; Struct freeblock
|
|
; NOTE: For performance reasons, the asm code often uses increment/decrement
|
|
; operators to access other offsets, so just changing offsets here will
|
|
; probably not work.
|
|
.struct freeblock
|
|
size .word
|
|
next .addr
|
|
prev .addr
|
|
.endstruct
|
|
|
|
; Struct usedblock
|
|
; See notes above
|
|
.struct usedblock
|
|
size .word
|
|
start .addr
|
|
.endstruct
|
|
|
|
HEAP_MIN_BLOCKSIZE = .sizeof (freeblock) ; Minimum size of an allocated block
|
|
HEAP_ADMIN_SPACE = .sizeof (usedblock) ; Additional space for used bock
|
|
|
|
; Variables
|
|
.global __heaporg
|
|
.global __heapptr
|
|
.global __heapend
|
|
.global __heapfirst
|
|
.global __heaplast
|