- Timestamp:
- 08/19/2017 09:59:43 AM (7 years ago)
- Branches:
- master
- Children:
- 53a8288
- Parents:
- c59409e
- Location:
- vlib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
vlib/vobjfns.c
rc59409e rad89950 45 45 #include "ram.h" 46 46 47 typedef void (**intvec)(void); 48 49 int16_t wsize; /* object width calculated by SetObj() */ 50 int16_t vi_dis; /* disable use of VIint */ 51 52 uint16_t vi_ctl; /* object unblank control bits */ 47 typedef void (*intfun)(void); 48 typedef volatile intfun *intvec; 49 50 int16_t wsize; /* object width calculated by SetObj() */ 51 int16_t vi_dis; /* disable use of VIint */ 52 53 volatile uint16_t vi_ctl; /* object unblank control bits */ 53 54 54 55 /* -
vlib/vobjfns.x
rc59409e rad89950 15 15 */ 16 16 17 extern uint16_t vi_ctl;18 extern int16_t vi_dis;19 extern int16_t wsize;17 extern volatile uint16_t vi_ctl; 18 extern int16_t vi_dis; 19 extern int16_t wsize; 20 20 21 21 /*
Note:
See TracChangeset
for help on using the changeset viewer.