Changeset 8c8b4e5 in buchla-68k for vlib/vtext.c


Ignore:
Timestamp:
09/17/2017 05:01:10 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
432327d
Parents:
5c4721b
Message:

More volatile hardware accesses.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlib/vtext.c

    r5c4721b r8c8b4e5  
    1212static uint16_t msk[] = { 0xFF00, 0x00FF };
    1313
    14 void vtext(uint16_t *obj, int16_t nc, int16_t row, int16_t col, int8_t *ip)
     14void vtext(volatile uint16_t *obj, int16_t nc, int16_t row, int16_t col, int8_t *ip)
    1515{
    16         register uint16_t *op;
     16        volatile uint16_t *op;
    1717
    1818        while (*ip) {
Note: See TracChangeset for help on using the changeset viewer.