📄 _heap.inc
字号:
;; _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.endstructHEAP_MIN_BLOCKSIZE = .sizeof (freeblock) ; Minimum size of an allocated blockHEAP_ADMIN_SPACE = .sizeof (usedblock) ; Additional space for used bock; Variables.global __heaporg.global __heapptr.global __heapend.global __heapfirst.global __heaplast
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -