summaryrefslogtreecommitdiff
path: root/firmware/decompressor/decompressor.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/decompressor/decompressor.c')
-rw-r--r--firmware/decompressor/decompressor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/decompressor/decompressor.c b/firmware/decompressor/decompressor.c
index acc8868f16..cec82b8b09 100644
--- a/firmware/decompressor/decompressor.c
+++ b/firmware/decompressor/decompressor.c
@@ -36,8 +36,8 @@ extern char loadaddress[], dramend[];
36extern void start(void); 36extern void start(void);
37 37
38void main(void) ICODE_ATTR; 38void main(void) ICODE_ATTR;
39int ucl_nrv2e_decompress_8(const unsigned char *src, unsigned char *dst, 39static int ucl_nrv2e_decompress_8(const unsigned char *src, unsigned char *dst,
40 unsigned long *dst_len) ICODE_ATTR; 40 unsigned long *dst_len) ICODE_ATTR;
41 41
42/* Vector table */ 42/* Vector table */
43void (*vbr[]) (void) __attribute__ ((section (".vectors"))) = 43void (*vbr[]) (void) __attribute__ ((section (".vectors"))) =
@@ -55,8 +55,8 @@ void (*vbr[]) (void) __attribute__ ((section (".vectors"))) =
55#define GETBIT(bb, src, ilen) \ 55#define GETBIT(bb, src, ilen) \
56 (((bb = bb & 0x7f ? bb*2 : ((unsigned)src[ilen++]*2+1)) >> 8) & 1) 56 (((bb = bb & 0x7f ? bb*2 : ((unsigned)src[ilen++]*2+1)) >> 8) & 1)
57 57
58int ucl_nrv2e_decompress_8(const unsigned char *src, unsigned char *dst, 58static int ucl_nrv2e_decompress_8(const unsigned char *src, unsigned char *dst,
59 unsigned long *dst_len) 59 unsigned long *dst_len)
60{ 60{
61 unsigned long bb = 0; 61 unsigned long bb = 0;
62 unsigned ilen = 0, olen = 0, last_m_off = 1; 62 unsigned ilen = 0, olen = 0, last_m_off = 1;