Changeset f806726 in buchla-68k for ram


Ignore:
Timestamp:
11/12/2017 10:16:16 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
7b25450
Parents:
fb926d1
Message:

Fixed scope.c.

Location:
ram
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ram/scope.c

    rfb926d1 rf806726  
    1515int16_t         scoper;                 /* scope row position */
    1616
    17 uint16_t        scopev;                 /* last scope value */
     17int16_t         scopev;                 /* last scope value */
    1818
    1919int8_t          scopebf[65];            /* scope display buffer */
     
    5252*/
    5353
    54 void scope(uint16_t val)
     54void scope(int16_t val)
    5555{
    5656        register int16_t i;
  • ram/scope.x

    rfb926d1 rf806726  
    2222extern  int16_t         scopef;
    2323extern  int16_t         scoper;
    24 extern  uint16_t        scopev;
     24extern  int16_t         scopev;
    2525
    2626extern  volatile        uint16_t        *scopeob;
     
    3232*/
    3333
    34 extern  void            scope(uint16_t val);
     34extern  void            scope(int16_t val);
    3535extern  void            scopeon(void);
    3636extern  void            scptogl(void);
Note: See TracChangeset for help on using the changeset viewer.