source: buchla-68k/ram/vtyper.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: 918 bytes
Line 
1#pragma once
2
3#include "stdint.h"
4
5/*
6 =============================================================================
7 vtyper.c -- global variables
8 =============================================================================
9*/
10
11extern int8_t vtlin1[];
12extern int8_t vtlin2[];
13extern int8_t vtlin3[];
14
15/*
16 =============================================================================
17 vtyper.c -- global functions
18 =============================================================================
19*/
20
21extern void vtcxupd(void);
22extern void vtcyupd(void);
23extern void vtdisp(uint16_t *obj, uint16_t fg, uint16_t bg, int16_t row, int16_t col, int8_t *buf);
24extern void vtsetup(uint16_t *obj, int16_t (*dsp)(), int16_t col, int8_t *ptr, int16_t tr, int16_t tc, int16_t (*adv)(), int16_t (*bsp)(), int16_t (*cup)(), int16_t (*cdn)(), int16_t (*stop)(), uint16_t fg, uint16_t bg);
25extern int16_t vtyper(void);
Note: See TracBrowser for help on using the repository browser.