cc65/libsrc/geos-common/memory/crc.s

20 lines
No EOL
324 B
ArmAsm

;
; Maciej 'YTM/Alliance' Witkowiak
;
; 22.12.99
; int CRC (char *memory, int length);
.import DoublePop
.export _CRC
.include "jumptab.inc"
.include "geossym.inc"
_CRC:
jsr DoublePop
jsr CRC
lda r2L
ldx r2H
rts