1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 03:56:15 +00:00
kickc/src/test/ref/malloc-0.asm

42 lines
974 B
NASM

// Experiments with malloc() - a byte array
// Commodore 64 PRG executable file
.file [name="malloc-0.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=$80d]
.segmentdef Data [startAfter="Code"]
.segment Basic
:BasicUpstart(__start)
// Top of the heap used by malloc()
.label HEAP_TOP = $a000
.label BYTES = malloc.return
.segment Code
__start: {
// malloc(0x100)
jsr malloc
jsr main
rts
}
// Allocates a block of size chars of memory, returning a pointer to the beginning of the block.
// The content of the newly allocated block of memory is not initialized, remaining with indeterminate values.
malloc: {
.const size = $100
.label mem = HEAP_TOP-size
.label return = mem
// }
rts
}
main: {
ldx #0
__b1:
// BYTES[i] = i
txa
sta BYTES,x
// for( byte i: 0..255)
inx
cpx #0
bne __b1
// }
rts
}