source: buchla-68k/rom/booter.x@ add86dd

Last change on this file since add86dd 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
18extern int32_t B_bss_l;
19extern int32_t B_bss_o;
20extern int32_t B_buf_a;
21extern int32_t B_chk;
22extern int32_t B_dat_l;
23extern int32_t B_dat_o;
24extern int16_t B_dbg_s;
25extern int32_t B_end;
26extern struct EXFILE B_fhdr;
27extern int32_t B_lod_l;
28extern int16_t B_log_s;
29extern int32_t B_txt_l;
30extern int32_t B_txt_o;
31
32/*
33 =============================================================================
34 external functions
35 =============================================================================
36*/
37
38extern int16_t booter(int8_t *fn, int32_t textadr);
Note: See TracBrowser for help on using the repository browser.