source: buchla-68k/ram/cminit.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: 1005 bytes
Line 
1#pragma once
2
3#include "stdint.h"
4
5/*
6 =============================================================================
7 cminit.c -- global variables
8 =============================================================================
9*/
10
11extern int16_t QQanch;
12extern int8_t QQchr;
13extern int8_t QQdig;
14extern int8_t *QQin;
15extern int8_t *QQip;
16extern int16_t QQlnum;
17extern int32_t QQnum;
18extern int8_t *QQop;
19extern int8_t QQstr[257];
20extern int16_t QQsw;
21
22/*
23 =============================================================================
24 cminit.c -- global functions
25 =============================================================================
26*/
27
28extern int16_t CMchr(int8_t c);
29extern int16_t CMdig(void);
30extern void CMinit(int8_t *ip);
31extern int16_t CMlist(int8_t *l[]);
32extern int16_t CMlong(void);
33extern int16_t CMstat(int8_t *msg);
34extern int16_t CMstr(int8_t *s);
35extern int16_t CMuchr(int8_t c);
36extern int16_t CMulist(int8_t *l[]);
37extern int16_t CMustr(int8_t *s);
38
Note: See TracBrowser for help on using the repository browser.