summaryrefslogtreecommitdiff
path: root/p2pvr/embed.m4
blob: d94ee7c7aefc4ae0e4c6131914b5f9e4fa11a981 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
define(`start', NAME`_start')
define(`end', NAME`_end')
define(`len', NAME`_len')
.section .rodata
	.global start
	.type   start, @object
start:
	.incbin "PATH"

	.global end
	.type   end, @object
end:
	.byte   0

	.global len
	.type   len, @object
len:
	.int    end - start