Changeset 7258c6a in buchla-68k for include/hwdefs.h


Ignore:
Timestamp:
07/09/2017 04:45:34 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8618599
Parents:
0292fbb
Message:

Use standard integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/hwdefs.h

    r0292fbb r7258c6a  
    88/* hardware addresses */
    99
    10 extern  char    io_time[], io_lcd, io_ser, io_midi;
    11 extern  char    io_disk, io_tone, io_leds, io_kbrd;
    12 extern  char    lcd_a0, lcd_a1;
     10extern  int8_t  io_time[], io_lcd, io_ser, io_midi;
     11extern  int8_t  io_disk, io_tone, io_leds, io_kbrd;
     12extern  int8_t  lcd_a0, lcd_a1;
    1313
    14 extern  unsigned        io_vreg[], io_vraw[], io_vram[], io_fpu[];
     14extern  uint16_t        io_vreg[], io_vraw[], io_vram[], io_fpu[];
    1515
    1616
    1717/* video memory allocations */
    1818
    19 extern  unsigned        v_regs[], v_odtab[][4], v_actab[];
    20 extern  unsigned        v_ct0[], v_gt1[], v_score[], v_cgtab[];
     19extern  uint16_t        v_regs[], v_odtab[][4], v_actab[];
     20extern  uint16_t        v_ct0[], v_gt1[], v_score[], v_cgtab[];
    2121
    22 extern  unsigned        v_curs0[], v_curs1[], v_curs2[], v_curs3[];
    23 extern  unsigned        v_curs4[], v_curs5[], v_curs6[], v_curs7[];
    24 extern  unsigned        v_tcur[], v_kbobj[], v_lnobj[];
    25 extern  unsigned        v_win0[], v_cur[];
     22extern  uint16_t        v_curs0[], v_curs1[], v_curs2[], v_curs3[];
     23extern  uint16_t        v_curs4[], v_curs5[], v_curs6[], v_curs7[];
     24extern  uint16_t        v_tcur[], v_kbobj[], v_lnobj[];
     25extern  uint16_t        v_win0[], v_cur[];
    2626
    2727
    2828/* stuff in the depths of the bios */
    2929
    30 extern  short   fc_sw;
     30extern  int16_t fc_sw;
    3131
    32 extern  long    fc_val;
     32extern  int32_t fc_val;
     33
Note: See TracChangeset for help on using the changeset viewer.