home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / opus / v5 / opussdk / examples / iconclock / iconclock_data.c next >
C/C++ Source or Header  |  1977-12-31  |  2KB  |  57 lines

  1. #include "iconclock.h"
  2.  
  3. // Module definition - no functions, but we get called on startup
  4. ModuleInfo
  5.     module_info={
  6.         1,
  7.         "iconclock.module",
  8.         "iconclock.catalog",
  9.         MODULEF_CALL_STARTUP,
  10.         0};
  11.  
  12.  
  13. USHORT __chip
  14.  
  15.     numeral_data[10][13]={
  16.  
  17.         {0x7e00,0xbd00,0xc300,0xc300,0xc300,0x8100,0x0000,0x8100,
  18.         0xc300,0xc300,0xc300,0xbd00,0x7e00},
  19.  
  20.         {0x0000,0x0100,0x0300,0x0300,0x0300,0x0100,0x0000,0x0100,
  21.         0x0300,0x0300,0x0300,0x0100,0x0000},
  22.  
  23.         {0x7e00,0x3d00,0x0300,0x0300,0x0300,0x3d00,0x7e00,0xbc00,
  24.         0xc000,0xc000,0xc000,0xbc00,0x7e00},
  25.  
  26.         {0x7e00,0x3d00,0x0300,0x0300,0x0300,0x3d00,0x7e00,0x3d00,
  27.         0x0300,0x0300,0x0300,0x3d00,0x7e00},
  28.  
  29.         {0x0000,0x8100,0xc300,0xc300,0xc300,0xbd00,0x7e00,0x3d00,
  30.         0x0300,0x0300,0x0300,0x0100,0x0000},
  31.  
  32.         {0x7e00,0xbc00,0xc000,0xc000,0xc000,0xbc00,0x7e00,0x3d00,
  33.         0x0300,0x0300,0x0300,0x3d00,0x7e00},
  34.  
  35.         {0x7e00,0xbc00,0xc000,0xc000,0xc000,0xbc00,0x7e00,0xbd00,
  36.         0xc300,0xc300,0xc300,0xbd00,0x7e00},
  37.  
  38.         {0x7e00,0xbd00,0xc300,0xc300,0xc300,0x8100,0x0000,0x0100,
  39.         0x0300,0x0300,0x0300,0x0100,0x0000},
  40.  
  41.         {0x7e00,0xbd00,0xc300,0xc300,0xc300,0xbd00,0x7e00,0xbd00,
  42.         0xc300,0xc300,0xc300,0xbd00,0x7e00},
  43.  
  44.         {0x7e00,0xbd00,0xc300,0xc300,0xc300,0xbd00,0x7e00,0x3d00,
  45.         0x0300,0x0300,0x0300,0x3d00,0x7e00}},
  46.  
  47.     colon_data[3][13]={
  48.  
  49.         {0x0000,0x0000,0x3000,0x3000,0x3000,0x0000,0x0000,0x0000,
  50.         0x3000,0x3000,0x3000,0x0000,0x0000},
  51.  
  52.         {0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
  53.         0x3000,0x3000,0x3000,0x0000,0x0000},
  54.  
  55.         {0x0000,0x0000,0x3000,0x3000,0x3000,0x0000,0x0000,0x0000,
  56.         0x0000,0x0000,0x0000,0x0000,0x0000}};
  57.