thiagoauler-apple1/src/inc/types.h

9 lines
216 B
C

#ifndef _APPLE_I_TYPES_H_
#define _APPLE_I_TYPES_H_
typedef unsigned char db; // data byte (1 byte)
typedef unsigned short dw; // data word (2 bytes)
typedef unsigned int dd; // data double (4 bytes)
#endif