source: buchla-68k/ram/sqdisp.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: 930 bytes
Line 
1#pragma once
2
3#include "stdint.h"
4
5/*
6 =============================================================================
7 sqdisp.c -- global variables
8 =============================================================================
9*/
10
11extern int16_t curslin;
12extern int16_t seqpal[16][3];
13extern int16_t sqatype[];
14extern int8_t *sqdsptb[];
15extern int8_t sqhead[];
16extern int8_t *sqmcon[];
17
18/*
19 =============================================================================
20 sqdisp.c -- global functions
21 =============================================================================
22*/
23
24extern int8_t *SqBakLn(void);
25extern int8_t *SqFwdLn(void);
26extern void dcursq(void);
27extern void dsact(int8_t *buf, uint16_t act, uint16_t dat);
28extern void dsqlin(int8_t *buf, int16_t slin);
29extern void dstw(void);
30extern void initsq(void);
31extern void sqdisp(void);
32extern void sqwin(int16_t n);
33extern void sqwins(void);
Note: See TracBrowser for help on using the repository browser.