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

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

Fixed scope.c.

  • Property mode set to 100644
File size: 936 bytes
Line 
1/*
2 =============================================================================
3 scope.c -- external declarations
4 =============================================================================
5*/
6
7#pragma once
8
9#include "curpak.h"
10#include "fields.h"
11#include "stdint.h"
12
13/*
14 =============================================================================
15 external variables
16 =============================================================================
17*/
18
19extern struct curpak dt_flds;
20extern int8_t scopebf[65];
21extern int16_t scopec;
22extern int16_t scopef;
23extern int16_t scoper;
24extern int16_t scopev;
25
26extern volatile uint16_t *scopeob;
27
28/*
29 =============================================================================
30 external functions
31 =============================================================================
32*/
33
34extern void scope(int16_t val);
35extern void scopeon(void);
36extern void scptogl(void);
Note: See TracBrowser for help on using the repository browser.