source: buchla-68k/ram/scope.x@ 8c8b4e5

Last change on this file since 8c8b4e5 was 8c8b4e5, checked in by Thomas Lopatic <thomas@…>, 7 years ago

More volatile hardware accesses.

  • Property mode set to 100644
File size: 937 bytes
RevLine 
[526a993]1/*
2 =============================================================================
3 scope.c -- external declarations
4 =============================================================================
5*/
6
[6262b5c]7#pragma once
8
9#include "curpak.h"
[6aa430b]10#include "fields.h"
[6262b5c]11#include "stdint.h"
12
13/*
14 =============================================================================
[526a993]15 external variables
[6262b5c]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 uint16_t scopev;
25
[8c8b4e5]26extern volatile uint16_t *scopeob;
27
[6262b5c]28/*
29 =============================================================================
[526a993]30 external functions
[6262b5c]31 =============================================================================
32*/
33
34extern void scope(uint16_t val);
35extern void scopeon(void);
36extern void scptogl(void);
Note: See TracBrowser for help on using the repository browser.