source: buchla-68k/ram/etadep.c

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

Fix conversion warnings.

  • Property mode set to 100644
File size: 2.1 KB
Line 
1/*
2 =============================================================================
3 etadep.c -- MIDAS assignment editor - phase shifter depth field
4 Version 4 -- 1987-12-19 -- D.N. Lynx Crowe
5 =============================================================================
6*/
7
8#include "ram.h"
9
10/*
11 =============================================================================
12 et_adep() -- load the edit buffer
13 =============================================================================
14*/
15
16int16_t et_adep(int16_t n)
17{
18 (void)n;
19
20 sprintf(ebuf, "%02d", ps_dpth);
21 ebflag = TRUE;
22
23 return(SUCCESS);
24}
25
26/*
27 =============================================================================
28 ef_adep() -- parse (unload) the edit buffer
29 =============================================================================
30*/
31
32int16_t ef_adep(int16_t n)
33{
34 register int16_t i, tmpval;
35
36 (void)n;
37
38 ebuf[2] = '\0'; /* terminate the string in ebuf */
39 ebflag = FALSE;
40 tmpval = 0;
41
42 for (i = 0; i < 2; i++) /* convert from ASCII to binary */
43 tmpval = (tmpval * 10) + (ebuf[i] - '0');
44
45 ps_dpth = tmpval;
46 sendval(3, 0, ((ps_dpth * 10) << 5));
47 modasg();
48 return(SUCCESS);
49}
50
51/*
52 =============================================================================
53 rd_adep() -- (re)display the field
54 =============================================================================
55*/
56
57int16_t rd_adep(int16_t nn)
58{
59 register int16_t n;
60
61 n = nn & 0xFF;
62 sprintf(dspbuf, "%02.2d", ps_dpth);
63
64 vbank(0);
65 vcputsv(asgob, 64, adbox[n][4], adbox[n][5],
66 adbox[n][6] + 3, adbox[n][7] + 8, dspbuf, 14);
67
68 return(SUCCESS);
69}
70
71/*
72 =============================================================================
73 nd_adep() -- handle new data entry
74 =============================================================================
75*/
76
77int16_t nd_adep(int16_t nn, int16_t k)
78{
79 register int16_t ec, n;
80
81 n = nn & 0xFF;
82
83 ec = stccol - cfetp->flcol; /* setup edit buffer column */
84
85 ebuf[ec] = (int8_t)(k + '0');
86 ebuf[2] = '\0';
87
88 dspbuf[0] = (int8_t)(k + '0');
89 dspbuf[1] = '\0';
90
91 vbank(0);
92 vcputsv(asgob, 64, AK_ENTRY, adbox[n][5], stcrow, stccol, dspbuf, 14);
93
94 advacur();
95 return(SUCCESS);
96}
97
98
Note: See TracBrowser for help on using the repository browser.