Last change
on this file since 3ac8e1b was add86dd, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Incompatible pointers, pointer-int conversions.
|
-
Property mode
set to
100644
|
File size:
1017 bytes
|
Line | |
---|
1 | /*
|
---|
2 | =============================================================================
|
---|
3 | booter.c -- external declarations
|
---|
4 | =============================================================================
|
---|
5 | */
|
---|
6 |
|
---|
7 | #pragma once
|
---|
8 |
|
---|
9 | #include "objdefs.h"
|
---|
10 | #include "stdint.h"
|
---|
11 |
|
---|
12 | /*
|
---|
13 | =============================================================================
|
---|
14 | external variables
|
---|
15 | =============================================================================
|
---|
16 | */
|
---|
17 |
|
---|
18 | extern int32_t B_bss_l;
|
---|
19 | extern int32_t B_bss_o;
|
---|
20 | extern int32_t B_buf_a;
|
---|
21 | extern int32_t B_chk;
|
---|
22 | extern int32_t B_dat_l;
|
---|
23 | extern int32_t B_dat_o;
|
---|
24 | extern int16_t B_dbg_s;
|
---|
25 | extern int32_t B_end;
|
---|
26 | extern struct EXFILE B_fhdr;
|
---|
27 | extern int32_t B_lod_l;
|
---|
28 | extern int16_t B_log_s;
|
---|
29 | extern int32_t B_txt_l;
|
---|
30 | extern int32_t B_txt_o;
|
---|
31 |
|
---|
32 | /*
|
---|
33 | =============================================================================
|
---|
34 | external functions
|
---|
35 | =============================================================================
|
---|
36 | */
|
---|
37 |
|
---|
38 | extern int16_t booter(int8_t *fn, int32_t textadr);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.