Changeset 7258c6a in buchla-68k for ram/etipnt.c
- Timestamp:
- 07/09/2017 04:45:34 PM (7 years ago)
- Branches:
- master
- Children:
- 8618599
- Parents:
- 0292fbb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ram/etipnt.c
r0292fbb r7258c6a 19 19 extern void advicur(void); 20 20 extern void pntsel(void); 21 extern void showpt( short q);22 extern short timeto(short fn, short pj);23 extern void setseg( short pn, unsignedptime);21 extern void showpt(int16_t q); 22 extern int16_t timeto(int16_t fn, int16_t pj); 23 extern void setseg(int16_t pn, uint16_t ptime); 24 24 25 extern u nsigned*instob;25 extern uint16_t *instob; 26 26 27 extern short stccol, subj, curvce, curfunc, curpnt;27 extern int16_t stccol, subj, curvce, curfunc, curpnt; 28 28 29 extern short idbox[][8];29 extern int16_t idbox[][8]; 30 30 31 extern chardspbuf[];31 extern int8_t dspbuf[]; 32 32 33 33 extern struct instdef vbufs[]; … … 45 45 */ 46 46 47 short et_ipnt(short n)47 int16_t et_ipnt(int16_t n) 48 48 { 49 49 sprintf(ebuf, "%02d", subj); … … 63 63 */ 64 64 65 short ef_ipnt(short n)65 int16_t ef_ipnt(int16_t n) 66 66 { 67 register short i, tmpval, endpnt, basept;67 register int16_t i, tmpval, endpnt, basept; 68 68 register struct idfnhdr *fp; 69 69 register struct instdef *ip; … … 147 147 */ 148 148 149 short rd_ipnt(short n)149 int16_t rd_ipnt(int16_t n) 150 150 { 151 151 sprintf(dspbuf, "%02d", subj); /* convert to ASCII */ … … 169 169 */ 170 170 171 short nd_ipnt(short n, short k)171 int16_t nd_ipnt(int16_t n, int16_t k) 172 172 { 173 register short ec;173 register int16_t ec; 174 174 175 175 ec = stccol - cfetp->flcol; /* setup edit buffer column */
Note:
See TracChangeset
for help on using the changeset viewer.