mirror of
https://github.com/cc65/cc65.git
synced 2025-01-01 18:31:28 +00:00
25 lines
313 B
ArmAsm
25 lines
313 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 21.12.99
|
||
|
|
||
|
; char BlkAlloc (struct tr_se output[], int length);
|
||
|
|
||
|
.import popax
|
||
|
.export _BlkAlloc
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_BlkAlloc:
|
||
|
sta r2L
|
||
|
stx r2H
|
||
|
jsr popax
|
||
|
sta r4L
|
||
|
stx r4H
|
||
|
jsr BlkAlloc
|
||
|
stx errno
|
||
|
txa
|
||
|
rts
|