Changeset f806726 in buchla-68k
- Timestamp:
- 11/12/2017 10:16:16 PM (7 years ago)
- Branches:
- master
- Children:
- 7b25450
- Parents:
- fb926d1
- Location:
- ram
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ram/scope.c
rfb926d1 rf806726 15 15 int16_t scoper; /* scope row position */ 16 16 17 uint16_tscopev; /* last scope value */17 int16_t scopev; /* last scope value */ 18 18 19 19 int8_t scopebf[65]; /* scope display buffer */ … … 52 52 */ 53 53 54 void scope( uint16_t val)54 void scope(int16_t val) 55 55 { 56 56 register int16_t i; -
ram/scope.x
rfb926d1 rf806726 22 22 extern int16_t scopef; 23 23 extern int16_t scoper; 24 extern uint16_tscopev;24 extern int16_t scopev; 25 25 26 26 extern volatile uint16_t *scopeob; … … 32 32 */ 33 33 34 extern void scope( uint16_t val);34 extern void scope(int16_t val); 35 35 extern void scopeon(void); 36 36 extern void scptogl(void);
Note:
See TracChangeset
for help on using the changeset viewer.