Changeset 7258c6a in buchla-68k for ram/ttcpos.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/ttcpos.c
r0292fbb r7258c6a 21 21 #define CW_F 0xFFFF 22 22 23 extern u nsigned exp_c(unsignedc);23 extern uint16_t exp_c(uint16_t c); 24 24 25 extern short vtcrow; /* virtual typewriter cursor row */26 extern short vtccol; /* virtual typewriter cursor column */25 extern int16_t vtcrow; /* virtual typewriter cursor row */ 26 extern int16_t vtccol; /* virtual typewriter cursor column */ 27 27 28 28 /* … … 30 30 */ 31 31 32 static short ttcur[] = {32 static int16_t ttcur[] = { 33 33 34 34 CW_0, CW_0, CW_0, CW_0, /* 0 */ … … 60 60 */ 61 61 62 void ttcini(u nsignedcolor)62 void ttcini(uint16_t color) 63 63 { 64 64 if ((v_regs[5] & 0x0180) NE 0x0100) … … 74 74 */ 75 75 76 void ttcpos( short row, short col)76 void ttcpos(int16_t row, int16_t col) 77 77 { 78 register short yrow, xcol;78 register int16_t yrow, xcol; 79 79 register struct octent *op; 80 80
Note:
See TracChangeset
for help on using the changeset viewer.