|
DataMuseum.dkPresents historical artifacts from the history of: Commodore CBM-900 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Commodore CBM-900 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - download
Length: 1536 (0x600) Types: TextFile Notes: UNIX file Names: »mdata.h«
└─⟦f27320a65⟧ Bits:30001972 Commodore 900 hard disk image with partial source code └─⟦2d53db1df⟧ UNIX Filesystem └─ ⟦this⟧ »sys/z8001/h/mdata.h«
/* (-lgl * The information contained herein is a trade secret of Mark Williams * Company, and is confidential information. It is provided under a * license agreement, and may be copied or disclosed only under the * terms of that agreement. Any reproduction or disclosure of this * material without the express written authorization of Mark Williams * Company or persuant to the license agreement is unlawful. * * COHERENT Version 0.7.3 * Copyright (c) 1982, 1983, 1984. * An unpublished work by Mark Williams Company, Chicago. * All rights reserved. -lgl) */ /* * Magic machine numbers. * Zilog z8001 (commodore machine) */ /* Bits per type */ #define NBCHAR 8 #define NBINT 16 #define NBLONG 32 #define NBFLOAT 32 #define NBDOUBLE 64 #define NBSHORT 16 /* Bits per pointer */ #ifdef Z8001 #define NBPCHAR 32 #define NBPINT 32 #define NBPLONG 32 #define NBPFLOAT 32 #define NBPDOUBLE 32 #define NBPSHORT 32 #define NBPUNION 32 #else #define NBPCHAR 16 #define NBPINT 16 #define NBPLONG 16 #define NBPFLOAT 16 #define NBPDOUBLE 16 #define NBPSHORT 16 #define NBPSTRUCT 16 #define NBPUNION 16 #endif /* Alignments, types */ #define ALCHAR 01 #define ALINT 02 #define ALLONG 02 #define ALFLOAT 02 #define ALDOUBLE 02 #define ALSHORT 02 #define ALSTRUCT 02 #define ALUNION 02 /* Alignments, pointers */ #define ALPCHAR 02 #define ALPINT 02 #define ALPLONG 02 #define ALPFLOAT 02 #define ALPDOUBLE 02 #define ALPSHORT 02 #define ALPSTRUCT 02 #define ALPUNION 02