mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-25 07:32:17 +00:00
10 lines
238 B
C
10 lines
238 B
C
#ifndef read_profile_h
|
|
#define read_profile_h
|
|
|
|
typedef enum { BO_BIG_ENDIAN, BO_LITTLE_ENDIAN } ByteOrder;
|
|
extern unsigned long instruction_count[65536];
|
|
|
|
extern void read_profile (const char *filename);
|
|
|
|
#endif /* Not read_profile_h */
|