18 lines
395 B
ArmAsm
18 lines
395 B
ArmAsm
.section .rodata
|
|
.global collateKernelStart
|
|
.global collateKernelEnd
|
|
.global collateKernelNBytes
|
|
.type collateKernelStart, @object
|
|
.type collateKernelEnd, @object
|
|
.type collateKernelNBytes, @object
|
|
|
|
collateKernelStart:
|
|
.incbin "collateDgrams.cl"
|
|
collateKernelEnd:
|
|
|
|
.section .data
|
|
collateKernelNBytes:
|
|
.long collateKernelEnd - collateKernelStart
|
|
|
|
.section .note.GNU-stack,"",@progbits
|