1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-20 05:29:39 +00:00

Fixed two typos

git-svn-id: svn://svn.cc65.org/cc65/trunk@3383 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2005-02-14 09:39:46 +00:00
parent bc5d046503
commit 9afcff6020

View File

@ -1,7 +1,7 @@
; ;
; _heap.inc ; _heap.inc
; ;
; (C) Copyright 2003 Ullrich von Bassewitz (uz@cc65.org) ; (c) Copyright 2003, Ullrich von Bassewitz (uz@cc65.org)
; ;
; Assembler include file that makes the constants and structures in _heap.h ; Assembler include file that makes the constants and structures in _heap.h
@ -25,7 +25,7 @@
.endstruct .endstruct
HEAP_MIN_BLOCKSIZE = .sizeof (freeblock) ; Minimum size of an allocated block HEAP_MIN_BLOCKSIZE = .sizeof (freeblock) ; Minimum size of an allocated block
HEAP_ADMIN_SPACE = .sizeof (usedblock) ; Additional space for used bocks HEAP_ADMIN_SPACE = .sizeof (usedblock) ; Additional space for used bock
; Variables ; Variables
.global __heaporg .global __heaporg