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

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

Fixed sqexec.c.

  • Property mode set to 100644
File size: 1017 bytes
Line 
1/*
2 =============================================================================
3 ptdisp.c -- external declarations
4 =============================================================================
5*/
6
7#pragma once
8
9#include "patch.h"
10#include "stdint.h"
11
12/*
13 =============================================================================
14 external variables
15 =============================================================================
16*/
17
18extern int16_t ptabpal[16][3];
19extern int8_t pthead[];
20extern int8_t *ptmcon[];
21extern uint16_t seqflag[16];
22extern int16_t seqline[16];
23extern uint16_t seqstim[16];
24extern struct seqent seqtab[NSLINES];
25extern uint16_t seqtime[16];
26extern uint16_t sregval[16];
27extern uint16_t trstate[16];
28
29/*
30 =============================================================================
31 external functions
32 =============================================================================
33*/
34
35extern void ptdisp(void);
36extern void ptwin(int16_t n);
37extern void ptwins(void);
Note: See TracBrowser for help on using the repository browser.