source: buchla-68k/ram/sedump.x@ 6262b5c

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

Added include files for global functions and variables.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#pragma once
2
3#include "score.h"
4#include "stdint.h"
5
6/*
7 =============================================================================
8 sedump.c -- global variables
9 =============================================================================
10*/
11
12extern int8_t *A6PTR;
13extern int8_t *A7PTR;
14extern int8_t *A7TOP;
15extern int32_t SCdlim;
16extern int16_t SCnumv;
17extern int16_t SL_Flag;
18extern int8_t *actname[];
19extern int8_t *evkinds[25];
20extern int8_t *hpname[12];
21extern int8_t *srcname[];
22extern int8_t *var_lbl[6];
23extern int16_t x_unrec;
24
25/*
26 =============================================================================
27 sedump.c -- global functions
28 =============================================================================
29*/
30
31extern void DOA(void);
32extern void SCPanic(void);
33extern void SCcrash(void);
34extern void SCdump(void);
35extern void SCslice(void);
36extern void SCtimes(void);
37extern void SCvce(int16_t n);
38extern void SCvces(void);
39extern void SCvoice(void);
40extern void SECdump(void);
41extern struct s_entry *SEchase(struct s_entry *ep, int32_t n);
42extern void SEctrl(void);
43extern struct s_entry *SEdump(struct s_entry *sep);
44extern void SEsnap(void);
45extern void SLdump(void);
46extern int8_t *ev_kind(struct s_entry *sep);
47
Note: See TracBrowser for help on using the repository browser.