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

Last change on this file since 6aa430b was 6aa430b, checked in by Thomas Lopatic <thomas@…>, 7 years ago

More accurate headers.

  • Property mode set to 100644
File size: 833 bytes
Line 
1#pragma once
2
3#include "objdefs.h"
4#include "stdint.h"
5
6/*
7 =============================================================================
8 booter.c -- global variables
9 =============================================================================
10*/
11
12extern int32_t B_bss_l;
13extern int32_t B_bss_o;
14extern int8_t *B_buf_a;
15extern int32_t B_chk;
16extern int32_t B_dat_l;
17extern int32_t B_dat_o;
18extern int16_t B_dbg_s;
19extern int32_t B_end;
20extern struct EXFILE B_fhdr;
21extern int32_t B_lod_l;
22extern int16_t B_log_s;
23extern int32_t B_txt_l;
24extern int32_t B_txt_o;
25
26/*
27 =============================================================================
28 booter.c -- global functions
29 =============================================================================
30*/
31
32extern int16_t booter(int8_t *fn, int32_t textadr);
Note: See TracBrowser for help on using the repository browser.