source: buchla-68k/ram/sqdisp.x

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

Fix sqselbx.c.

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[526a993]1/*
2 =============================================================================
3 sqdisp.c -- external declarations
4 =============================================================================
5*/
6
[6262b5c]7#pragma once
8
9#include "stdint.h"
10
11/*
12 =============================================================================
[526a993]13 external variables
[6262b5c]14 =============================================================================
15*/
16
17extern int16_t curslin;
18extern int16_t seqpal[16][3];
[19caa64]19extern uint16_t sqatype[];
[6262b5c]20extern int8_t *sqdsptb[];
21extern int8_t sqhead[];
22extern int8_t *sqmcon[];
23
24/*
25 =============================================================================
[526a993]26 external functions
[6262b5c]27 =============================================================================
28*/
29
30extern int8_t *SqBakLn(void);
31extern int8_t *SqFwdLn(void);
32extern void dcursq(void);
33extern void dsact(int8_t *buf, uint16_t act, uint16_t dat);
34extern void dsqlin(int8_t *buf, int16_t slin);
35extern void dstw(void);
36extern void initsq(void);
37extern void sqdisp(void);
38extern void sqwin(int16_t n);
39extern void sqwins(void);
Note: See TracBrowser for help on using the repository browser.