thiagoauler-apple1/src/inc/types.h

9 lines
216 B
C
Raw Normal View History

2017-11-12 02:31:55 +00:00
#ifndef _APPLE_I_TYPES_H_
#define _APPLE_I_TYPES_H_
2017-11-13 01:00:52 +00:00
typedef unsigned char db; // data byte (1 byte)
typedef unsigned short dw; // data word (2 bytes)
typedef unsigned int dd; // data double (4 bytes)
2017-11-12 02:31:55 +00:00
#endif