home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / debugger / bdm-linu.0 / bdm-linu / bdm-linux / sizedefs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-27  |  731 b   |  23 lines

  1. /* sizedefs.h - define parameter types for BDM package
  2.  * Copyright (C) 1992 by Scott Howard, all rights reserved
  3.  * Permission is hereby granted to freely copy and use this code or derivations thereof
  4.  * as long as no charge is made to anyone for its use
  5.  *
  6.  * this file defines the types BYTE, WORD, and LONG to declare types
  7.  * that match the data sizes used in the target microcontroller(s)
  8.  * BYTE is one byte, WORD is two bytes, LONG is 4 bytes
  9.  * these are all unsigned quantities
  10.  * change these definitions if you are using a compiler with different default sizes
  11.  */
  12.  
  13. #ifndef    SIZEDEFS_H
  14.  
  15. #define    SIZEDEFS_H
  16. #define    BYTE    unsigned char
  17. #define    WORD    unsigned short
  18. #define    LONG    unsigned int
  19.  
  20. #endif
  21.  
  22. /* end of sizedefs.h */
  23.